summaryrefslogtreecommitdiffstats
path: root/demos/declarative/flickr/mobile/ListDelegate.qml
diff options
context:
space:
mode:
authorYann Bodson <yann.bodson@nokia.com>2009-10-28 06:05:29 (GMT)
committerYann Bodson <yann.bodson@nokia.com>2009-10-28 06:05:29 (GMT)
commit06ea501e617ec04b786906ca1bc15db452d03d0a (patch)
tree05498a604e46c0cb2a6f4ef4b99d9352bb3916da /demos/declarative/flickr/mobile/ListDelegate.qml
parent886a6f036358e19331b9c0ae5229af9805352eb5 (diff)
downloadQt-06ea501e617ec04b786906ca1bc15db452d03d0a.zip
Qt-06ea501e617ec04b786906ca1bc15db452d03d0a.tar.gz
Qt-06ea501e617ec04b786906ca1bc15db452d03d0a.tar.bz2
cleanup
Diffstat (limited to 'demos/declarative/flickr/mobile/ListDelegate.qml')
-rw-r--r--demos/declarative/flickr/mobile/ListDelegate.qml6
1 files changed, 3 insertions, 3 deletions
diff --git a/demos/declarative/flickr/mobile/ListDelegate.qml b/demos/declarative/flickr/mobile/ListDelegate.qml
index 090e91a..75c4572 100644
--- a/demos/declarative/flickr/mobile/ListDelegate.qml
+++ b/demos/declarative/flickr/mobile/ListDelegate.qml
@@ -14,9 +14,9 @@ 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: "ElideRight"; style: "Raised"; styleColor: "black" }
- Text { text: photoAuthor; color: "white"; width: parent.width; elide: "ElideLeft"; color: "#cccccc"; style: "Raised"; styleColor: "black" }
- Text { text: photoDate; color: "white"; width: parent.width; elide: "ElideRight"; color: "#cccccc"; style: "Raised"; styleColor: "black" }
+ 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" }
}
}
}