diff options
author | Warwick Allison <warwick.allison@nokia.com> | 2009-05-07 05:43:41 (GMT) |
---|---|---|
committer | Warwick Allison <warwick.allison@nokia.com> | 2009-05-07 05:43:41 (GMT) |
commit | 53a8b4eae35a67bbdfb0af9f6f5a7e06527644e6 (patch) | |
tree | 2ee1ef2d13a5b6a1144c217186cb7ba4abbeed0a /demos | |
parent | 6f665b568b5234d07e8ea709026f4b11bf0c09f0 (diff) | |
download | Qt-53a8b4eae35a67bbdfb0af9f6f5a7e06527644e6.zip Qt-53a8b4eae35a67bbdfb0af9f6f5a7e06527644e6.tar.gz Qt-53a8b4eae35a67bbdfb0af9f6f5a7e06527644e6.tar.bz2 |
doc
Diffstat (limited to 'demos')
-rw-r--r-- | demos/declarative/flickr/content/ImageDetails.qml | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/demos/declarative/flickr/content/ImageDetails.qml b/demos/declarative/flickr/content/ImageDetails.qml index 955f85d..6c354f6 100644 --- a/demos/declarative/flickr/content/ImageDetails.qml +++ b/demos/declarative/flickr/content/ImageDetails.qml @@ -60,8 +60,9 @@ Flipable { text: "<b>Published:</b> " + Container.photoDate } Text { id: TagsLabel; color: "white"; x: 220; anchors.top: Date.bottom; text: Container.photoTags == "" ? "" : "<b>Tags:</b> " } - Text { id: Tags; color: "white"; width: parent.width-x-20; anchors.left: TagsLabel.right; anchors.top: Date.bottom; elide: "ElideRight" - text: Container.photoTags == "" ? "" : Container.photoTags } + Text { id: Tags; color: "white"; width: parent.width-x-20; + anchors.left: TagsLabel.right; anchors.top: Date.bottom; + elide: "ElideRight"; text: Container.photoTags } ScrollBar { id: ScrollBar; x: 720; y: Flickable.y; width: 7; height: Flickable.height; opacity: 0; flickableArea: Flickable; clip: true } |