From e37e46d34a9da1f34774d12511bf22c71ddc249c Mon Sep 17 00:00:00 2001 From: David Rowe Date: Fri, 8 Apr 2016 10:30:00 +1200 Subject: [PATCH] Disable arrow keys being able to move between HTML form fields Moving between form fields with arrow keys makes it to easy to make unintended changes to adjacent fields. --- interface/resources/qml/hifi/Desktop.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/interface/resources/qml/hifi/Desktop.qml b/interface/resources/qml/hifi/Desktop.qml index 409c468878..59278a17b4 100644 --- a/interface/resources/qml/hifi/Desktop.qml +++ b/interface/resources/qml/hifi/Desktop.qml @@ -21,7 +21,7 @@ Desktop { Component.onCompleted: { WebEngine.settings.javascriptCanOpenWindows = true; WebEngine.settings.javascriptCanAccessClipboard = false; - WebEngine.settings.spatialNavigationEnabled = true; + WebEngine.settings.spatialNavigationEnabled = false; WebEngine.settings.localContentCanAccessRemoteUrls = true; }