Mercurial > hg > tony
diff src/MainWindow.cpp @ 180:30045b51279b
merge
author | matthiasm |
---|---|
date | Wed, 19 Feb 2014 09:02:01 +0000 |
parents | 515bfde8aab7 |
children | ea15fa75ae6f |
line wrap: on
line diff
--- a/src/MainWindow.cpp Tue Feb 11 10:27:27 2014 +0000 +++ b/src/MainWindow.cpp Wed Feb 19 09:02:01 2014 +0000 @@ -535,7 +535,7 @@ //!!! shortcuts, status tip, key reference etc action = new QAction(tr("Clear Pitches"), this); - action->setShortcut(tr("Backspace")); + action->setShortcut(tr("Ctrl+Backspace")); connect(action, SIGNAL(triggered()), this, SLOT(clearPitches())); connect(this, SIGNAL(canClearSelection(bool)), action, SLOT(setEnabled(bool))); menu->addAction(action); @@ -555,7 +555,7 @@ //!!! shortcuts, status tip, key reference etc action = new QAction(tr("Switch Pitch Candidate"), this); - action->setShortcut(tr("Return")); + action->setShortcut(tr("Ctrl+Return")); connect(action, SIGNAL(triggered()), this, SLOT(switchPitch())); connect(this, SIGNAL(canClearSelection(bool)), action, SLOT(setEnabled(bool))); menu->addAction(action);