# HG changeset patch # User Chris Cannam # Date 1396428447 -3600 # Node ID 79ba5b50a40e75abbb6e4df64865466965430c7e # Parent b6b2f69c516d08295200db8bf169eca5a91ca786 Add selection strip mouse actions to key and mouse reference diff -r b6b2f69c516d -r 79ba5b50a40e src/MainWindow.cpp --- a/src/MainWindow.cpp Wed Apr 02 09:18:45 2014 +0100 +++ b/src/MainWindow.cpp Wed Apr 02 09:47:27 2014 +0100 @@ -489,6 +489,18 @@ CommandHistory::getInstance()->registerMenu(menu); menu->addSeparator(); + m_keyReference->setCategory + (tr("Selection Strip Mouse Actions")); + m_keyReference->registerShortcut + (tr("Jump"), tr("Left"), + tr("Click left button to move the playback position to a time")); + m_keyReference->registerShortcut + (tr("Select"), tr("Left"), + tr("Click left button and drag to select a region of time")); + m_keyReference->registerShortcut + (tr("Select Note Duration"), tr("Double-Click Left"), + tr("Double-click left button to select the region of time corresponding to a note")); + QToolBar *toolbar = addToolBar(tr("Tools Toolbar")); CommandHistory::getInstance()->registerToolbar(toolbar);