summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/contacts/2_Reuse/3/FieldText.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tutorials/contacts/2_Reuse/3/FieldText.qml')
-rw-r--r--examples/declarative/tutorials/contacts/2_Reuse/3/FieldText.qml14
1 files changed, 7 insertions, 7 deletions
diff --git a/examples/declarative/tutorials/contacts/2_Reuse/3/FieldText.qml b/examples/declarative/tutorials/contacts/2_Reuse/3/FieldText.qml
index 77952eb..8a9424f 100644
--- a/examples/declarative/tutorials/contacts/2_Reuse/3/FieldText.qml
+++ b/examples/declarative/tutorials/contacts/2_Reuse/3/FieldText.qml
@@ -96,31 +96,31 @@ Rectangle {
states: [
State {
name: "editing"
- SetProperties {
+ PropertyChanges {
target: confirmIcon
opacity: 1
}
- SetProperties {
+ PropertyChanges {
target: cancelIcon
opacity: 1
}
- SetProperties {
+ PropertyChanges {
target: textEdit
readOnly: false
}
- SetProperties {
+ PropertyChanges {
target: textEdit
focus: true
}
- SetProperties {
+ PropertyChanges {
target: editRegion
opacity: 0
}
- SetProperties {
+ PropertyChanges {
target: textEdit.anchors
leftMargin: 39
}
- SetProperties {
+ PropertyChanges {
target: textEdit.anchors
rightMargin: 39
}