aboutsummaryrefslogtreecommitdiffstats
path: root/examples/demos/tweetsearch/content/ListHeader.qml
diff options
context:
space:
mode:
authorAlan Alpert <alan.alpert@nokia.com>2012-06-19 15:00:59 +1000
committerQt by Nokia <qt-info@nokia.com>2012-07-24 07:53:05 +0200
commitc315908dc4331ee5f47012865842352ea0dd6ca4 (patch)
tree71534ada564f550e06ae460d65fc34f217db24e9 /examples/demos/tweetsearch/content/ListHeader.qml
parent5743516cfa40d53d716a7033734bde906bb3984c (diff)
TweetSearch Stylistic Tweaks
Includes upgrading the bird sprite to stochastic behavior Change-Id: I6357f6a47ded0a18ad0746c3eef590ee9092db52 Reviewed-by: Yann Bodson <yann.bodson@nokia.com>
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 }
}
]