Qt: Turn retroachievements.org into a hyperlink

This commit is contained in:
Davide Pesavento 2025-07-11 15:36:03 -04:00 committed by Connor McLaughlin
parent 2fad6478b4
commit 0e9f116a2e

View File

@ -156,10 +156,11 @@ void SettingsWindow::addPages()
QString icon_text(QStringLiteral("trophy-line"));
QString help_text(
tr("<strong>Achievement Settings</strong><hr>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 <a href=\"%1\">%1</a>. To view "
"the achievement list in-game, press the hotkey for <strong>Open Pause Menu</strong> and select "
"<strong>Achievements</strong> 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));