Mercurial > hg > sonic-visualiser
diff main/MainWindow.cpp @ 2038:8529a60df1b4
Adjust Help menu - the What's New is genuinely useful I think so make it more obvious, and "SV on the Web" is not all that useful and is more intuitively found via the About box
author | Chris Cannam |
---|---|
date | Thu, 11 Oct 2018 19:06:37 +0100 |
parents | 4db75d584e5a |
children | 551c246c4b5d c643094e4709 |
line wrap: on
line diff
--- a/main/MainWindow.cpp Thu Oct 11 18:47:30 2018 +0100 +++ b/main/MainWindow.cpp Thu Oct 11 19:06:37 2018 +0100 @@ -1908,13 +1908,8 @@ m_keyReference->registerShortcut(action); menu->addAction(action); - action = new QAction(tr("%1 on the &Web").arg(name), this); - action->setStatusTip(tr("Open the %1 website").arg(name)); - connect(action, SIGNAL(triggered()), this, SLOT(website())); - menu->addAction(action); - - action = new QAction(tr("What's &New?"), this); - action->setStatusTip(tr("Show changes in this release of %1").arg(name)); + action = new QAction(tr("What's &New In This Release?"), this); + action->setStatusTip(tr("List the changes in this release (and every previous release) of %1").arg(name)); connect(action, SIGNAL(triggered()), this, SLOT(whatsNew())); menu->addAction(action);