summaryrefslogtreecommitdiffstats
path: root/demos
diff options
context:
space:
mode:
authorWarwick Allison <warwick.allison@nokia.com>2009-05-12 01:09:22 (GMT)
committerWarwick Allison <warwick.allison@nokia.com>2009-05-12 01:09:22 (GMT)
commit1eac1941b8ad8131fea9da68a342fe3bf7b0ece2 (patch)
tree93aed2002e8413b7fcb428dde65d228a95b9edb2 /demos
parent1d48c20c9471a8079a15247522becd2908e3c114 (diff)
downloadQt-1eac1941b8ad8131fea9da68a342fe3bf7b0ece2.zip
Qt-1eac1941b8ad8131fea9da68a342fe3bf7b0ece2.tar.gz
Qt-1eac1941b8ad8131fea9da68a342fe3bf7b0ece2.tar.bz2
Revert accidentally commted stuff.
Diffstat (limited to 'demos')
-rw-r--r--demos/declarative/flickr/flickr.qml21
1 files changed, 0 insertions, 21 deletions
diff --git a/demos/declarative/flickr/flickr.qml b/demos/declarative/flickr/flickr.qml
index b33b00f..829f568 100644
--- a/demos/declarative/flickr/flickr.qml
+++ b/demos/declarative/flickr/flickr.qml
@@ -205,25 +205,4 @@ Item {
(FeedModel.tags=="" ? "Uploads from everyone" : "Recent Uploads tagged " + FeedModel.tags)
font.size: 16; font.bold: true; color: "white"; style: "Raised"; styleColor: "black"
}
-
- Image {
- source: "content/pics/fingerpoint.png"
- opacity: finger.pressed ? 0 : 1
- x: finger.mouseX-16
- y: finger.mouseY-16
- }
-
- Image {
- source: "content/pics/fingerpoint-pressed.png"
- opacity: finger.pressed ? 1.0 : 0.0
- x: finger.mouseX-16
- y: finger.mouseY-16
- }
-
- MouseRegion {
- // this region is just to show where the finger is (good for videos)
- id: finger
- absorb: false
- anchors.fill: parent
- }
}