# HG changeset patch # User Chris Cannam # Date 1539281197 -3600 # Node ID 8529a60df1b405c1e8bb73532ccca93512d710c8 # Parent cc006afb838d05bacc06b51171eb7f0da37e5c58 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 diff -r cc006afb838d -r 8529a60df1b4 main/MainWindow.cpp --- 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);