Mercurial > hg > tony
changeset 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 | 56a25d2dcb62 |
children | 30045b51279b |
files | src/MainWindow.cpp |
diffstat | 1 files changed, 2 insertions(+), 2 deletions(-) [+] |
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);