From 0e9f116a2e0890ad95f812d57ea5160c7bfddbf6 Mon Sep 17 00:00:00 2001 From: Davide Pesavento Date: Fri, 11 Jul 2025 15:36:03 -0400 Subject: [PATCH] Qt: Turn `retroachievements.org` into a hyperlink --- src/duckstation-qt/settingswindow.cpp | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/src/duckstation-qt/settingswindow.cpp b/src/duckstation-qt/settingswindow.cpp index dcc9e6c86..ae147e6a0 100644 --- a/src/duckstation-qt/settingswindow.cpp +++ b/src/duckstation-qt/settingswindow.cpp @@ -156,10 +156,11 @@ void SettingsWindow::addPages() QString icon_text(QStringLiteral("trophy-line")); QString help_text( tr("Achievement Settings
DuckStation uses RetroAchievements as an achievement database and " - "for tracking progress. To use achievements, please sign up for an account at retroachievements.org. To view " + "for tracking progress. To use achievements, please sign up for an account at %1. To view " "the achievement list in-game, press the hotkey for Open Pause Menu and select " "Achievements from the menu. Mouse over an option for additional information, and " - "Shift+Wheel to scroll this panel.")); + "Shift+Wheel to scroll this panel.") + .arg("https://retroachievements.org/")); addWidget(m_achievement_settings = new AchievementSettingsWidget(this, m_ui.settingsContainer), std::move(title), std::move(icon_text), std::move(help_text));