summaryrefslogtreecommitdiffstats
path: root/tests/auto/declarative/qmlvisual/focusscope/test3.qml
diff options
context:
space:
mode:
Diffstat (limited to 'tests/auto/declarative/qmlvisual/focusscope/test3.qml')
-rw-r--r--tests/auto/declarative/qmlvisual/focusscope/test3.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/auto/declarative/qmlvisual/focusscope/test3.qml b/tests/auto/declarative/qmlvisual/focusscope/test3.qml
index 90c23573..377b03a5 100644
--- a/tests/auto/declarative/qmlvisual/focusscope/test3.qml
+++ b/tests/auto/declarative/qmlvisual/focusscope/test3.qml
@@ -27,12 +27,12 @@ Rectangle {
id: verticalDelegate
FocusScope {
id: root
- width: 50; height: 50;
+ width: 50; height: 50;
Keys.onDigit9Pressed: console.log("Error - " + name)
- Rectangle {
+ Rectangle {
focus: true
Keys.onDigit9Pressed: console.log(name)
- width: 50; height: 50;
+ width: 50; height: 50;
color: root.ListView.isCurrentItem?"black":name
}
}