Browse Source

inputmaps/keyboard.json: fix Shift+F11 binding

It didn't do anything because of a syntax issue. The regexp
was broken - it had valid syntax, but matched for example
"ShiftttttF11", but not "Shift+F11".
Vincent Lang 8 years ago
parent
commit
0c0b88dc6c
1 changed files with 1 additions and 1 deletions
  1. 1 1
      resources/inputmaps/keyboard.json

+ 1 - 1
resources/inputmaps/keyboard.json

@@ -55,7 +55,7 @@
     "Meta\\+Ctrl\\+F": "host:fullscreenCurrentMode",
     "Meta\\+Enter": "host:fullscreen",
     "F11": "host:fullscreen",
-    "Shift+F11": "host:fullscreenCurrentMode",
+    "Shift\\+F11": "host:fullscreenCurrentMode",
     "Ctrl\\+Q": "host:close",
     "Ctrl\\+Shift\\+R": "host:reload",
     "Ctrl\\+Shift\\+D": "host:toggleDebug",