summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/mobile/ListDelegate.qml
diff options
context:
space:
mode:
authorBea Lam <bea.lam@nokia.com>2010-03-02 02:08:54 (GMT)
committerBea Lam <bea.lam@nokia.com>2010-03-02 02:08:54 (GMT)
commitb3c94b923200dd9c98b66f4233c62e63a3ee79d4 (patch)
tree4181b0f4e3feb993d9eeae16c0dd1ccf5daa5bc3 /demos/declarative/flickr/mobile/ListDelegate.qml
parent8da93faace82eb2bc86e76c0ad0a0c5c95e3b8bf (diff)
parenta9d327db7e77cc167172ad3199b6ffbc1c9da74f (diff)
downloadQt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.zip
Qt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.tar.gz
Qt-b3c94b923200dd9c98b66f4233c62e63a3ee79d4.tar.bz2
Merge branch '4.7' of scm.dev.nokia.troll.no:qt/qt-qml into 4.7
Diffstat (limited to 'demos/declarative/flickr/mobile/ListDelegate.qml')
-rw-r--r--demos/declarative/flickr/mobile/ListDelegate.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/flickr/mobile/ListDelegate.qml b/demos/declarative/flickr/mobile/ListDelegate.qml
index 75c4572..381664b 100644
--- a/demos/declarative/flickr/mobile/ListDelegate.qml
+++ b/demos/declarative/flickr/mobile/ListDelegate.qml
@@ -15,8 +15,8 @@ Component {
Column {
x: 92; width: wrapper.ListView.view.width - 95; y: 15; spacing: 2
Text { text: title; color: "white"; width: parent.width; font.bold: true; elide: Text.ElideRight; style: Text.Raised; styleColor: "black" }
- Text { text: photoAuthor; color: "white"; width: parent.width; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
- Text { text: photoDate; color: "white"; width: parent.width; elide: Text.ElideRight; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
+ Text { text: photoAuthor; width: parent.width; elide: Text.ElideLeft; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
+ Text { text: photoDate; width: parent.width; elide: Text.ElideRight; color: "#cccccc"; style: Text.Raised; styleColor: "black" }
}
}
}