summaryrefslogtreecommitdiff
path: root/examples
diff options
context:
space:
mode:
authorAaron McCarthy <aaron.mccarthy@nokia.com>2012-02-28 11:40:26 +1000
committerQt by Nokia <qt-info@nokia.com>2012-02-28 06:24:23 +0100
commit8fe956336c5eaed4b85bb82923c474c044d6f8d8 (patch)
treeb66ea14804ad64d818b06e836eaae8c0cb555d4a /examples
parent54678e128f4515eadac8c598696425c8c2f02bfd (diff)
downloadqtlocation-8fe956336c5eaed4b85bb82923c474c044d6f8d8.tar.gz
Fix keyboard focus in examples.
Change-Id: Ifc6dbef4568dac3d487edea63c8edef376be98ff Reviewed-by: Alex Wilson <alex.wilson@nokia.com>
Diffstat (limited to 'examples')
-rw-r--r--examples/declarative/common/imports/QtLocation/examples/components/TextWithLabel.qml1
-rw-r--r--examples/declarative/mapviewer/mapviewer.qml4
-rw-r--r--examples/declarative/places/places.qml4
3 files changed, 0 insertions, 9 deletions
diff --git a/examples/declarative/common/imports/QtLocation/examples/components/TextWithLabel.qml b/examples/declarative/common/imports/QtLocation/examples/components/TextWithLabel.qml
index aa49fd51..92b51445 100644
--- a/examples/declarative/common/imports/QtLocation/examples/components/TextWithLabel.qml
+++ b/examples/declarative/common/imports/QtLocation/examples/components/TextWithLabel.qml
@@ -70,7 +70,6 @@ Row {
radius: 5
TextInput {
id: inputField
- focus: true
width: parent.width - anchors.leftMargin
enabled: textWithLabel.enabled
color: enabled ? "#242424" : "lightgrey"
diff --git a/examples/declarative/mapviewer/mapviewer.qml b/examples/declarative/mapviewer/mapviewer.qml
index 4c507ef9..c80abb91 100644
--- a/examples/declarative/mapviewer/mapviewer.qml
+++ b/examples/declarative/mapviewer/mapviewer.qml
@@ -639,10 +639,6 @@ Item {
//=====================States of page=====================
states: [
State {
- name: ""
- PropertyChanges { target: map; focus: true }
- },
- State {
name: "RevGeocode"
PropertyChanges { target: reverseGeocodeDialog; opacity: 1 }
},
diff --git a/examples/declarative/places/places.qml b/examples/declarative/places/places.qml
index e42ce52b..b98f29c8 100644
--- a/examples/declarative/places/places.qml
+++ b/examples/declarative/places/places.qml
@@ -598,10 +598,6 @@ Item {
//=====================States of page=====================
states: [
State {
- name: ""
- PropertyChanges { target: map; focus: true }
- },
- State {
name: "Provider"
PropertyChanges { target: providerMenu; y: page.height - providerMenu.height - mainMenu.height }
},