changeset 798:c305961985c4

Return seems to work better than Enter here
author Chris Cannam
date Wed, 03 Sep 2014 09:35:03 +0100
parents c6f06ff13afc
children b9633f578069
files main/MainWindow.cpp
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/main/MainWindow.cpp	Wed Sep 03 09:27:04 2014 +0100
+++ b/main/MainWindow.cpp	Wed Sep 03 09:35:03 2014 +0100
@@ -752,7 +752,7 @@
     menu->addAction(action);
 
     action = new QAction(tr("Insert Item at Selection"), this);
-    action->setShortcut(tr("Ctrl+Shift+Enter"));
+    action->setShortcut(tr("Ctrl+Shift+Return"));
     action->setStatusTip(tr("Insert a new note or region item corresponding to the current selection"));
     connect(action, SIGNAL(triggered()), this, SLOT(insertItemAtSelection()));
     connect(this, SIGNAL(canInsertItemAtSelection(bool)), action, SLOT(setEnabled(bool)));