From 4130b07f88a2c23118503dbdad28fa8ef1fb8ccb Mon Sep 17 00:00:00 2001 From: Zach Hilman Date: Mon, 4 Mar 2019 18:24:16 -0500 Subject: web_browser: Add shortcut to Enter key to exit applet Addresses issues where a user in fullscreen could not exit some web applets without leaving fullscreen. --- src/yuzu/applets/web_browser.cpp | 2 ++ 1 file changed, 2 insertions(+) (limited to 'src/yuzu/applets/web_browser.cpp') diff --git a/src/yuzu/applets/web_browser.cpp b/src/yuzu/applets/web_browser.cpp index 6a9138d53..979b9ec14 100644 --- a/src/yuzu/applets/web_browser.cpp +++ b/src/yuzu/applets/web_browser.cpp @@ -56,6 +56,8 @@ constexpr char NX_SHIM_INJECT_SCRIPT[] = R"( window.nx.endApplet = function() { applet_done = true; }; + + window.onkeypress = function(e) { if (e.keyCode === 13) { applet_done = true; } }; )"; QString GetNXShimInjectionScript() { -- cgit v1.2.3