diff options
author | german77 <juangerman-13@hotmail.com> | 2021-09-01 18:48:01 -0500 |
---|---|---|
committer | german77 <juangerman-13@hotmail.com> | 2021-09-10 00:58:12 -0500 |
commit | 5798537ce431481f44e3335a1a291b733bd719ad (patch) | |
tree | 16aa3dcf2c0f76b74ac47b22feb7b23ac10b3280 /src/yuzu/main.cpp | |
parent | 51ccc29cdd2e8ac7aa1a10dfdef12ad981c67056 (diff) |
input_common: Enable steam controllers and 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 e36774cc65..e129707e90 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; |