diff options
author | lat9nq <lat9nq@gmail.com> | 2022-03-17 23:14:27 +0100 |
---|---|---|
committer | lat9nq <lat9nq@gmail.com> | 2022-03-17 23:14:27 +0100 |
commit | 7760777c06ba227eba2f985765e07d8f4829a8c6 (patch) | |
tree | baf7c1b1dd58da79838ad22a2de3f153eb252345 /src | |
parent | configure_debug: Add option to set disable_web_applet (diff) | |
download | yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.tar yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.tar.gz yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.tar.bz2 yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.tar.lz yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.tar.xz yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.tar.zst yuzu-7760777c06ba227eba2f985765e07d8f4829a8c6.zip |
Diffstat (limited to 'src')
-rw-r--r-- | src/yuzu/main.cpp | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index a3ec822a6..b137d5e38 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -652,9 +652,8 @@ void GMainWindow::WebBrowserOpenWebPage(const std::string& main_url, connect(exit_action, &QAction::triggered, this, [this, &web_browser_view] { const auto result = QMessageBox::warning( this, tr("Disable Web Applet"), - tr("Disabling the web applet will cause it to not be shown again for the rest of the " - "emulated session. This can lead to undefined behavior and should only be used with " - "Super Mario 3D All-Stars. Are you sure you want to disable the web applet?"), + tr("Disabling the web applet can lead to undefined behavior and should only be used " + "with Super Mario 3D All-Stars. Are you sure you want to disable the web applet?"), QMessageBox::Yes | QMessageBox::No); if (result == QMessageBox::Yes) { UISettings::values.disable_web_applet = true; |