comparison src/MainWindow.cpp @ 348:c66ec7f40acb

another wording improvement (?) for analysis menu
author matthiasm
date Mon, 16 Jun 2014 12:33:29 +0100
parents c9affb380e35
children 56109ef020b4 0b08d860081b ffd1a89a68fa
comparison
equal deleted inserted replaced
347:c9affb380e35 348:c66ec7f40acb
850 action->setCheckable(true); 850 action->setCheckable(true);
851 action->setChecked(precise); 851 action->setChecked(precise);
852 connect(action, SIGNAL(triggered()), this, SLOT(precisionAnalysisToggled())); 852 connect(action, SIGNAL(triggered()), this, SLOT(precisionAnalysisToggled()));
853 menu->addAction(action); 853 menu->addAction(action);
854 854
855 action = new QAction(tr("&Penalise Pitches at Low Amplitudes"), this); 855 action = new QAction(tr("&Penalise Soft Pitches"), this);
856 action->setStatusTip(tr("Reduce the likelihood of detecting a pitch when the signal has low amplitude.")); 856 action->setStatusTip(tr("Reduce the likelihood of detecting a pitch when the signal has low amplitude."));
857 action->setCheckable(true); 857 action->setCheckable(true);
858 action->setChecked(lowamp); 858 action->setChecked(lowamp);
859 connect(action, SIGNAL(triggered()), this, SLOT(lowampAnalysisToggled())); 859 connect(action, SIGNAL(triggered()), this, SLOT(lowampAnalysisToggled()));
860 menu->addAction(action); 860 menu->addAction(action);