# HG changeset patch # User Chris Cannam # Date 1396426725 -3600 # Node ID b6b2f69c516d08295200db8bf169eca5a91ca786 # Parent f99fae5fe89c3d9d6fa7d90261f62cd7a7ff24ec Menu shortcuts and status tips diff -r f99fae5fe89c -r b6b2f69c516d src/MainWindow.cpp --- a/src/MainWindow.cpp Wed Apr 02 09:12:18 2014 +0100 +++ b/src/MainWindow.cpp Wed Apr 02 09:18:45 2014 +0100 @@ -452,20 +452,20 @@ this, SLOT(setupRecentFilesMenu())); menu->addSeparator(); - action = new QAction(tr("Import Pitch Track Data..."), this); - action->setStatusTip(tr("Import pitch-track data from a file")); + action = new QAction(tr("I&mport Pitch Track Data..."), this); + action->setStatusTip(tr("Import pitch-track data from a CSV, RDF, or layer XML file")); connect(action, SIGNAL(triggered()), this, SLOT(importPitchLayer())); connect(this, SIGNAL(canImportLayer(bool)), action, SLOT(setEnabled(bool))); menu->addAction(action); - action = new QAction(tr("Export Pitch Track Data..."), this); - action->setStatusTip(tr("Export pitch-track data to a file")); + action = new QAction(tr("E&xport Pitch Track Data..."), this); + action->setStatusTip(tr("Export pitch-track data to a CSV, RDF, or layer XML file")); connect(action, SIGNAL(triggered()), this, SLOT(exportPitchLayer())); connect(this, SIGNAL(canExportPitchTrack(bool)), action, SLOT(setEnabled(bool))); menu->addAction(action); - action = new QAction(tr("Export Note Data..."), this); - action->setStatusTip(tr("Export note data to a file")); + action = new QAction(tr("&Export Note Data..."), this); + action->setStatusTip(tr("Export note data to a CSV, RDF, layer XML, or MIDI file")); connect(action, SIGNAL(triggered()), this, SLOT(exportNoteLayer())); connect(this, SIGNAL(canExportNotes(bool)), action, SLOT(setEnabled(bool))); menu->addAction(action);