summaryrefslogtreecommitdiffstats
path: root/examples/declarative/searchbox/main.qml
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2010-03-05 01:18:53 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2010-03-05 01:18:53 (GMT)
commit24a94c1b88fc72243c53e1bf51b87dc0d0be41b7 (patch)
tree01d20c577044a351950814a6fda873d489d78bf2 /examples/declarative/searchbox/main.qml
parent38ff49e632da2bd61ac5fb59f57f62208c2687fd (diff)
downloadQt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.zip
Qt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.tar.gz
Qt-24a94c1b88fc72243c53e1bf51b87dc0d0be41b7.tar.bz2
declarative examples cleanup
Diffstat (limited to 'examples/declarative/searchbox/main.qml')
-rw-r--r--examples/declarative/searchbox/main.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/examples/declarative/searchbox/main.qml b/examples/declarative/searchbox/main.qml
index 39c3720..9b33be3 100644
--- a/examples/declarative/searchbox/main.qml
+++ b/examples/declarative/searchbox/main.qml
@@ -6,8 +6,8 @@ Rectangle {
Column {
anchors.horizontalCenter: parent.horizontalCenter; anchors.verticalCenter: parent.verticalCenter; spacing: 10
- SearchBox { id: search1; KeyNavigation.down: search2; focus: true }
- SearchBox { id: search2; KeyNavigation.up: search1; KeyNavigation.down: search3 }
- SearchBox { id: search3; KeyNavigation.up: search2 }
+ SearchBox { id: search1; KeyNavigation.tab: search2; KeyNavigation.backtab: search3; focus: true }
+ SearchBox { id: search2; KeyNavigation.tab: search3; KeyNavigation.backtab: search1 }
+ SearchBox { id: search3; KeyNavigation.tab: search1; KeyNavigation.backtab: search2 }
}
}