Mercurial > hg > tony
diff src/MainWindow.cpp @ 178:515bfde8aab7
changed shortcut commands for delete pitch track and switch pitch track
author | Firstname Lastname <firstname.lastname@example.net> |
---|---|
date | Tue, 18 Feb 2014 22:13:30 -0500 |
parents | e33f9d052503 |
children | ea15fa75ae6f |
line wrap: on
line diff
--- a/src/MainWindow.cpp Tue Feb 18 15:29:01 2014 -0500 +++ b/src/MainWindow.cpp Tue Feb 18 22:13:30 2014 -0500 @@ -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);