aboutsummaryrefslogtreecommitdiffstats
path: root/examples/demos/tweetsearch/content/ListHeader.qml
diff options
context:
space:
mode:
Diffstat (limited to 'examples/demos/tweetsearch/content/ListHeader.qml')
-rw-r--r--examples/demos/tweetsearch/content/ListHeader.qml8
1 files changed, 4 insertions, 4 deletions
diff --git a/examples/demos/tweetsearch/content/ListHeader.qml b/examples/demos/tweetsearch/content/ListHeader.qml
index fbb1765f59..1a967d8266 100644
--- a/examples/demos/tweetsearch/content/ListHeader.qml
+++ b/examples/demos/tweetsearch/content/ListHeader.qml
@@ -61,9 +61,9 @@ Item {
Text {
id: label
anchors.verticalCenter: arrow.verticalCenter
- text: "Pull to refresh"
- font.pixelSize: 20
- color: "#c1c1c1"
+ text: "Pull to refresh... "
+ font.pixelSize: 18
+ color: "#999999"
}
}
@@ -74,7 +74,7 @@ Item {
},
State {
name: "pulled"; when: mainListView.contentY < -120
- PropertyChanges { target: label; text: "Release to refresh" }
+ PropertyChanges { target: label; text: "Release to refresh..." }
PropertyChanges { target: arrow; rotation: 0 }
}
]