mirror of
https://github.com/taigrr/wails.git
synced 2026-04-14 02:48:21 -07:00
require shift+ESC to toggle
This commit is contained in:
File diff suppressed because one or more lines are too long
@@ -46,7 +46,7 @@
|
||||
|
||||
function logKey(e) {
|
||||
var conin = document.getElementById('conin');
|
||||
if (e.which == 27) {
|
||||
if (e.which == 27 && e.shiftKey) {
|
||||
toggleConsole(conin);
|
||||
}
|
||||
if (e.which == 13 && consoleVisible()) {
|
||||
|
||||
Reference in New Issue
Block a user