diff options
author | bunnei <bunneidev@gmail.com> | 2019-03-07 15:32:32 -0500 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-03-07 15:32:32 -0500 |
commit | 3b63a46ca4dd515ccbf376e9fb4a4afed077b616 (patch) | |
tree | 7acf0bc56ada3e429be14df66c1a5742f31f2d5d /src/yuzu/applets/web_browser.cpp | |
parent | c63a0e88b76f55e4759f001b9e4d3713b69e44eb (diff) | |
parent | 4130b07f88a2c23118503dbdad28fa8ef1fb8ccb (diff) |
Merge pull request #2196 from DarkLordZach/web-applet-esc
web_browser: Add shortcut to Enter key to exit applet
Diffstat (limited to 'src/yuzu/applets/web_browser.cpp')
-rw-r--r-- | src/yuzu/applets/web_browser.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
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() { |