diff options
author | bunnei <bunneidev@gmail.com> | 2018-10-06 09:18:13 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2018-10-06 09:18:13 +0200 |
commit | 6cc7656e814340ab0030b3b2e39342a501c56560 (patch) | |
tree | aa7254c4df178a7f85fb50684aca0725c997399a | |
parent | Merge pull request #1332 from FearlessTobi/port-web-backend (diff) | |
parent | qt: Update telemetry links (diff) | |
download | yuzu-6cc7656e814340ab0030b3b2e39342a501c56560.tar yuzu-6cc7656e814340ab0030b3b2e39342a501c56560.tar.gz yuzu-6cc7656e814340ab0030b3b2e39342a501c56560.tar.bz2 yuzu-6cc7656e814340ab0030b3b2e39342a501c56560.tar.lz yuzu-6cc7656e814340ab0030b3b2e39342a501c56560.tar.xz yuzu-6cc7656e814340ab0030b3b2e39342a501c56560.tar.zst yuzu-6cc7656e814340ab0030b3b2e39342a501c56560.zip |
Diffstat (limited to '')
-rw-r--r-- | src/yuzu/configuration/configure_web.cpp | 2 | ||||
-rw-r--r-- | src/yuzu/main.cpp | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/yuzu/configuration/configure_web.cpp b/src/yuzu/configuration/configure_web.cpp index 5fb9251db..3c2ccb76f 100644 --- a/src/yuzu/configuration/configure_web.cpp +++ b/src/yuzu/configuration/configure_web.cpp @@ -31,7 +31,7 @@ void ConfigureWeb::setConfiguration() { ui->web_credentials_disclaimer->setWordWrap(true); ui->telemetry_learn_more->setOpenExternalLinks(true); ui->telemetry_learn_more->setText( - tr("<a href='https://yuzu-emu.org/help/features/telemetry/'><span style=\"text-decoration: " + tr("<a href='https://yuzu-emu.org/help/feature/telemetry/'><span style=\"text-decoration: " "underline; color:#039be5;\">Learn more</span></a>")); ui->web_signup_link->setOpenExternalLinks(true); diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 147e7fcad..ad62a82d0 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -116,7 +116,7 @@ void GMainWindow::ShowTelemetryCallout() { UISettings::values.callout_flags |= static_cast<uint32_t>(CalloutFlag::Telemetry); const QString telemetry_message = - tr("<a href='https://yuzu-emu.org/help/features/telemetry/'>Anonymous " + tr("<a href='https://yuzu-emu.org/help/feature/telemetry/'>Anonymous " "data is collected</a> to help improve yuzu. " "<br/><br/>Would you like to share your usage data with us?"); if (QMessageBox::question(this, tr("Telemetry"), telemetry_message) != QMessageBox::Yes) { |