From 48405c0ee79a24f66c67af1aba75c7760f4559e9 Mon Sep 17 00:00:00 2001 From: Damien Elmes Date: Wed, 25 Oct 2017 16:54:24 +1000 Subject: [PATCH] fix shift+tab on osx again presumably broke in upgrade to qt 5.9.2 --- web/editor.js | 1 + 1 file changed, 1 insertion(+) diff --git a/web/editor.js b/web/editor.js index 8bed7ae9d..b01928a19 100644 --- a/web/editor.js +++ b/web/editor.js @@ -36,6 +36,7 @@ function onKey() { // shift+tab goes to previous field if (navigator.platform === "MacIntel" && window.event.which === 9 && window.event.shiftKey) { + window.event.preventDefault(); focusPrevious(); return; }