summaryrefslogtreecommitdiff
path: root/tests/auto/activeFocusOnTab/data
diff options
context:
space:
mode:
authorLiang Qi <liang.qi@digia.com>2013-05-07 14:21:12 +0200
committerThe Qt Project <gerrit-noreply@qt-project.org>2013-05-15 10:01:38 +0200
commit795b9fdc52993e0199f462add398b5de8e4d75c4 (patch)
tree91e4e7b3748d384ce4e8fa96c8104b106c7556c1 /tests/auto/activeFocusOnTab/data
parent72232a9ba0fa0ac328d60f1a1c8965cb303f4a48 (diff)
downloadqtquickcontrols-795b9fdc52993e0199f462add398b5de8e4d75c4.tar.gz
Mac: respect the system settings in Full Keyboard Access
Because we use TableView as ListView, then only SpinBox, TextField, TextAre and TableView could be selected. Change-Id: I65ca106e60a57d86e029647653ae110fd81edaa4 Reviewed-by: Jens Bache-Wiig <jens.bache-wiig@digia.com>
Diffstat (limited to 'tests/auto/activeFocusOnTab/data')
-rw-r--r--tests/auto/activeFocusOnTab/data/activeFocusOnTab.qml8
1 files changed, 6 insertions, 2 deletions
diff --git a/tests/auto/activeFocusOnTab/data/activeFocusOnTab.qml b/tests/auto/activeFocusOnTab/data/activeFocusOnTab.qml
index 5955b61e..20f1a77f 100644
--- a/tests/auto/activeFocusOnTab/data/activeFocusOnTab.qml
+++ b/tests/auto/activeFocusOnTab/data/activeFocusOnTab.qml
@@ -44,8 +44,8 @@ import QtQuick.Controls 1.0
Item {
id: main
objectName: "main"
- width: 800
- height: 600
+ width: 400
+ height: 800
focus: true
Component.onCompleted: button1.focus = true
Column {
@@ -197,6 +197,10 @@ Item {
objectName: "textfield"
text: "abc"
}
+ TableView {
+ id: tableview
+ objectName: "tableview"
+ }
TextArea {
id: textarea
objectName: "textarea"