Details
-
Bug
-
Resolution: Invalid
-
P2: Important
-
5.3.2
-
None
-
OS X only
Description
This code works fine on Linux, but not on OS X:
import QtQuick 2.2 import QtQuick.Controls 1.1 ApplicationWindow { visible: true width: 640 height: 480 // Should jump between the two edit fields on TAB FocusScope { activeFocusOnTab: true anchors.top: parent.top width: parent.width height: 100 TextField { activeFocusOnTab: false anchors.centerIn: parent text: qsTr("Press") focus: true } } FocusScope { activeFocusOnTab: true anchors.bottom: parent.bottom width: parent.width height: 100 TextField { activeFocusOnTab: false anchors.centerIn: parent text: qsTr("Tab") focus: true } } } // http://woboq.com/
On OS X nothing happens, the focus does NOT swap between the two fields