diff options
author | Lars Knoll <lars.knoll@nokia.com> | 2009-05-27 13:41:12 (GMT) |
---|---|---|
committer | Lars Knoll <lars.knoll@nokia.com> | 2009-05-27 13:41:12 (GMT) |
commit | 0a13be045b7e7fdf2b4d1a44b7aba72711375787 (patch) | |
tree | 213fbf8b823bd317583788f0fbc89e18064a1059 /demos | |
parent | 76cea46fdbd8145a484bd4bde7c2e6edd55cf2ac (diff) | |
download | Qt-0a13be045b7e7fdf2b4d1a44b7aba72711375787.zip Qt-0a13be045b7e7fdf2b4d1a44b7aba72711375787.tar.gz Qt-0a13be045b7e7fdf2b4d1a44b7aba72711375787.tar.bz2 |
fix flickr demo after recent changes to gradients.
Diffstat (limited to 'demos')
-rw-r--r-- | demos/declarative/flickr/content/Slider.qml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/demos/declarative/flickr/content/Slider.qml b/demos/declarative/flickr/content/Slider.qml index 6aff225..931dfe3 100644 --- a/demos/declarative/flickr/content/Slider.qml +++ b/demos/declarative/flickr/content/Slider.qml @@ -12,7 +12,7 @@ Item { id: Container; anchors.fill: parent pen.color: "white"; pen.width: 0; radius: 8 gradient: Gradient { - GradientStop { position: 0.0; color: "#66343434" }, + GradientStop { position: 0.0; color: "#66343434" } GradientStop { position: 1.0; color: "#66000000" } } } @@ -21,7 +21,7 @@ Item { id: Handle x: Slider.width / 2 - Handle.width / 2; y: 2; width: 30; height: Slider.height-4; radius: 6 gradient: Gradient { - GradientStop { position: 0.0; color: "lightgray" }, + GradientStop { position: 0.0; color: "lightgray" } GradientStop { position: 1.0; color: "gray" } } |