summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/mobile
diff options
context:
space:
mode:
authorMartin Jones <martin.jones@nokia.com>2010-07-14 00:09:41 (GMT)
committerMartin Jones <martin.jones@nokia.com>2010-07-14 00:09:41 (GMT)
commit7bd9e6c5805ab78c68161bec20c225965ea59ddb (patch)
tree2721d0e0ea737e31a08b0930c6d6a6bbf7a24a62 /demos/declarative/flickr/mobile
parentdf28c1203e12c572f795b8d114254a8e5a6619e8 (diff)
downloadQt-7bd9e6c5805ab78c68161bec20c225965ea59ddb.zip
Qt-7bd9e6c5805ab78c68161bec20c225965ea59ddb.tar.gz
Qt-7bd9e6c5805ab78c68161bec20c225965ea59ddb.tar.bz2
Enter key performs same action as Return key in QML demos.
N900 has an Enter key, not a return key
Diffstat (limited to 'demos/declarative/flickr/mobile')
-rw-r--r--demos/declarative/flickr/mobile/TitleBar.qml1
1 files changed, 1 insertions, 0 deletions
diff --git a/demos/declarative/flickr/mobile/TitleBar.qml b/demos/declarative/flickr/mobile/TitleBar.qml
index c7e1a53..335c315 100644
--- a/demos/declarative/flickr/mobile/TitleBar.qml
+++ b/demos/declarative/flickr/mobile/TitleBar.qml
@@ -109,6 +109,7 @@ Item {
Item {
id: returnKey
Keys.onReturnPressed: container.accept()
+ Keys.onEnterPressed: container.accept()
Keys.onEscapePressed: titleBar.state = ""
}
}