fix shift+tab on osx again

presumably broke in upgrade to qt 5.9.2
This commit is contained in:
Damien Elmes 2017-10-25 16:54:24 +10:00
parent d02901fb7a
commit 48405c0ee7

View file

@ -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;
}