summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorronso0 <ronso0@mixxx.org>2021-03-19 03:01:17 +0100
committerronso0 <ronso0@mixxx.org>2021-03-19 03:08:47 +0100
commitfafbc77350d05b08ab9ff889ec30bdf2e0329609 (patch)
treea3bcc68dfc9294216ae89a203924ff36a6416733 /src
parent9b699e9e2eb7534536f8bad4259952e08ea76132 (diff)
Help menu: use north-east arrow as hyperlink icon
Co-authored-by: Daniel Schürmann <daschuer@mixxx.org>
Diffstat (limited to 'src')
-rw-r--r--src/widget/wmainmenubar.cpp5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/widget/wmainmenubar.cpp b/src/widget/wmainmenubar.cpp
index 4a21f520c6..2b9e79254b 100644
--- a/src/widget/wmainmenubar.cpp
+++ b/src/widget/wmainmenubar.cpp
@@ -521,8 +521,7 @@ void WMainMenuBar::initialize() {
// HELP MENU
QMenu* pHelpMenu = new QMenu(tr("&Help"), this);
- QString externalLinkSuffix = " =>";
-
+ QString externalLinkSuffix = QChar(' ') + QChar(0x2197); // north-east arrow
QString supportTitle = tr("&Community Support") + externalLinkSuffix;
QString supportText = tr("Get help with Mixxx");
auto* pHelpSupport = new QAction(supportTitle, this);
@@ -545,7 +544,7 @@ void WMainMenuBar::initialize() {
resourceDir.absoluteFilePath(MIXXX_MANUAL_FILENAME));
}
#elif defined(__LINUX__)
- // On GNU/Linux, the manual is installed to e.g. /usr/share/mixxx/doc/
+ // On GNU/Linux, the manual is installed to e.g. /usr/share/doc/mixxx/
if (resourceDir.cd("../doc/mixxx") && resourceDir.exists(MIXXX_MANUAL_FILENAME)) {
qManualUrl = QUrl::fromLocalFile(
resourceDir.absoluteFilePath(MIXXX_MANUAL_FILENAME));