Mercurial > hg > tony
changeset 255:72622fcdd12c
Shortcuts
author | Chris Cannam |
---|---|
date | Wed, 02 Apr 2014 10:35:28 +0100 |
parents | 79ba5b50a40e |
children | 69c22ec29698 |
files | src/MainWindow.cpp |
diffstat | 1 files changed, 2 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/MainWindow.cpp Wed Apr 02 09:47:27 2014 +0100 +++ b/src/MainWindow.cpp Wed Apr 02 10:35:28 2014 +0100 @@ -653,7 +653,7 @@ m_rightButtonMenu->addAction(action); action = new QAction(tr("Merge Notes"), this); - action->setShortcut(tr("Ctrl+=")); + action->setShortcut(tr("Ctrl+\\")); action->setStatusTip(tr("Merge all notes within the selected region into a single note")); m_keyReference->registerShortcut(action); connect(action, SIGNAL(triggered()), this, SLOT(mergeNotes())); @@ -662,6 +662,7 @@ m_rightButtonMenu->addAction(action); action = new QAction(tr("Form Note from Selection"), this); + action->setShortcut(tr("Ctrl+=")); action->setStatusTip(tr("Form a note spanning the selected region, splitting any existing notes at its boundaries")); m_keyReference->registerShortcut(action); connect(action, SIGNAL(triggered()), this, SLOT(formNoteFromSelection()));