From 7ce9ab1758c3f8f8a4402417839a08af4acb42ba Mon Sep 17 00:00:00 2001 From: ronso0 Date: Mon, 30 Dec 2024 07:50:56 +0100 Subject: [PATCH] Controller preferences: don't break support link texts --- src/controllers/dlgprefcontroller.cpp | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/src/controllers/dlgprefcontroller.cpp b/src/controllers/dlgprefcontroller.cpp index 5c3bf0dfa026..96e8c898782e 100644 --- a/src/controllers/dlgprefcontroller.cpp +++ b/src/controllers/dlgprefcontroller.cpp @@ -343,7 +343,7 @@ QString DlgPrefController::mappingSupportLinks( if (!forumLink.isEmpty()) { linkList << coloredLinkString( m_pLinkColor, - "Mixxx Forums", + "Mixxx Forums", forumLink); } @@ -351,7 +351,7 @@ QString DlgPrefController::mappingSupportLinks( if (!wikiLink.isEmpty()) { linkList << coloredLinkString( m_pLinkColor, - "Mixxx Wiki", + "Mixxx Wiki", wikiLink); } @@ -359,7 +359,7 @@ QString DlgPrefController::mappingSupportLinks( if (!manualLink.isEmpty()) { linkList << coloredLinkString( m_pLinkColor, - "Mixxx Manual", + "Mixxx Manual", manualLink); } @@ -369,8 +369,8 @@ QString DlgPrefController::mappingSupportLinks( m_pLinkColor, tr("Troubleshooting"), MIXXX_WIKI_MIDI_SCRIPTING_URL); - - return QString(linkList.join("  ")); + // Without   would be rendered as regular whitespace (thin,  ) + return QString(linkList.join("  ")); } QString DlgPrefController::mappingFileLinks(