changeset 333:ef298f4e16bf

improved Analysis menu labels
author matthiasm
date Fri, 13 Jun 2014 16:09:11 +0100
parents 71f0b7c24c90
children ed9296a27a27 b5ed315a8b93
files src/MainWindow.cpp
diffstat 1 files changed, 7 insertions(+), 7 deletions(-) [+]
line wrap: on
line diff
--- a/src/MainWindow.cpp	Fri Jun 13 15:29:06 2014 +0100
+++ b/src/MainWindow.cpp	Fri Jun 13 16:09:11 2014 +0100
@@ -814,11 +814,9 @@
     QMenu *menu = menuBar()->addMenu(tr("&Analysis"));
     menu->setTearOffEnabled(true);
 
-    m_keyReference->setCategory(tr("Analysis"));
-
-    action = new QAction(tr("&Analyse now"), this);
-    action->setShortcut(tr("Ctrl+P"));
-    action->setStatusTip(tr("Analyse audio now to extract pitches and notes. (This will delete all existing pitches and notes.)"));
+
+    action = new QAction(tr("&Analyse now!"), this);
+    action->setStatusTip(tr("Trigger analysis of pitches and notes. (This will delete all existing pitches and notes.)"));
     connect(action, SIGNAL(triggered()), this, SLOT(analyseNow()));
     menu->addAction(action);
     m_keyReference->registerShortcut(action);
@@ -831,13 +829,15 @@
     bool precise = settings.value("precision-analysis", false).toBool();
     settings.endGroup();
 
-    action = new QAction(tr("Automatically Analyse &New Audio"), this);
+    action = new QAction(tr("Auto-Analyse &New Audio"), this);
+    action->setStatusTip(tr("Automatically trigger analysis upon opening of a new audio file."));
     action->setCheckable(true);
     action->setChecked(autoAnalyse);
     connect(action, SIGNAL(triggered()), this, SLOT(autoAnalysisToggled()));
     menu->addAction(action);
 
-    action = new QAction(tr("Analyse &Without Frequency-dependent Timing Bias (slow)"), this);
+    action = new QAction(tr("&Unbiased Timing (slow)"), this);
+    action->setStatusTip(tr("Use a symmetric window in YIN to remove frequency-dependent timing bias. (This is slow!)"));
     action->setCheckable(true);
     action->setChecked(precise);
     connect(action, SIGNAL(triggered()), this, SLOT(precisionAnalysisToggled()));