summaryrefslogtreecommitdiffstats
path: root/examples/declarative/tutorials/contacts/2_Reuse/4/RemoveButton.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/declarative/tutorials/contacts/2_Reuse/4/RemoveButton.qml')
-rw-r--r--examples/declarative/tutorials/contacts/2_Reuse/4/RemoveButton.qml10
1 files changed, 5 insertions, 5 deletions
diff --git a/examples/declarative/tutorials/contacts/2_Reuse/4/RemoveButton.qml b/examples/declarative/tutorials/contacts/2_Reuse/4/RemoveButton.qml
index ed60d00..abf8fd9 100644
--- a/examples/declarative/tutorials/contacts/2_Reuse/4/RemoveButton.qml
+++ b/examples/declarative/tutorials/contacts/2_Reuse/4/RemoveButton.qml
@@ -84,23 +84,23 @@ Rectangle {
states: [
State {
name: "opened"
- SetProperties {
+ PropertyChanges {
target: removeButton
width: removeButton.expandedWidth
}
- SetProperties {
+ PropertyChanges {
target: text
opacity: 1
}
- SetProperties {
+ PropertyChanges {
target: confirmIcon
opacity: 1
}
- SetProperties {
+ PropertyChanges {
target: cancelIcon
opacity: 1
}
- SetProperties {
+ PropertyChanges {
target: trashIcon
opacity: 0
}