diff options
author | bunnei <bunneidev@gmail.com> | 2021-09-17 17:25:51 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2021-09-17 17:25:51 -0700 |
commit | 6d7801deb7a4cd83d95605f355b1f5aa1c576f31 (patch) | |
tree | 880d17eca43a29776dec8202cade67659c39ec6e /src/yuzu/main.cpp | |
parent | d4ee94165fc6aeae7a1d4e6a13b5123d3dd2f0c0 (diff) | |
parent | 5798537ce431481f44e3335a1a291b733bd719ad (diff) |
Merge pull request #6950 from german77/multiplay
input_common: Add advanced setting for 8 player support
Diffstat (limited to 'src/yuzu/main.cpp')
-rw-r--r-- | src/yuzu/main.cpp | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/yuzu/main.cpp b/src/yuzu/main.cpp index 77d53e7bc..f4e49001d 100644 --- a/src/yuzu/main.cpp +++ b/src/yuzu/main.cpp @@ -557,7 +557,8 @@ void GMainWindow::WebBrowserOpenWebPage(const std::string& main_url, const std::string& additional_args, bool is_local) { #ifdef YUZU_USE_QT_WEB_ENGINE - if (disable_web_applet) { + // Raw input breaks with the web applet, Disable web applets if enabled + if (disable_web_applet || Settings::values.enable_raw_input) { emit WebBrowserClosed(Service::AM::Applets::WebExitReason::WindowClosed, "http://localhost/"); return; |