Mercurial > hg > sonic-visualiser
comparison 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 |
comparison
equal
deleted
inserted
replaced
2037:cc006afb838d | 2038:8529a60df1b4 |
---|---|
1906 action->setStatusTip(tr("Open a window showing the keystrokes you can use in %1").arg(name)); | 1906 action->setStatusTip(tr("Open a window showing the keystrokes you can use in %1").arg(name)); |
1907 connect(action, SIGNAL(triggered()), this, SLOT(keyReference())); | 1907 connect(action, SIGNAL(triggered()), this, SLOT(keyReference())); |
1908 m_keyReference->registerShortcut(action); | 1908 m_keyReference->registerShortcut(action); |
1909 menu->addAction(action); | 1909 menu->addAction(action); |
1910 | 1910 |
1911 action = new QAction(tr("%1 on the &Web").arg(name), this); | 1911 action = new QAction(tr("What's &New In This Release?"), this); |
1912 action->setStatusTip(tr("Open the %1 website").arg(name)); | 1912 action->setStatusTip(tr("List the changes in this release (and every previous release) of %1").arg(name)); |
1913 connect(action, SIGNAL(triggered()), this, SLOT(website())); | |
1914 menu->addAction(action); | |
1915 | |
1916 action = new QAction(tr("What's &New?"), this); | |
1917 action->setStatusTip(tr("Show changes in this release of %1").arg(name)); | |
1918 connect(action, SIGNAL(triggered()), this, SLOT(whatsNew())); | 1913 connect(action, SIGNAL(triggered()), this, SLOT(whatsNew())); |
1919 menu->addAction(action); | 1914 menu->addAction(action); |
1920 | 1915 |
1921 action = new QAction(tr("&About %1").arg(name), this); | 1916 action = new QAction(tr("&About %1").arg(name), this); |
1922 action->setStatusTip(tr("Show information about %1").arg(name)); | 1917 action->setStatusTip(tr("Show information about %1").arg(name)); |