summaryrefslogtreecommitdiffstats
path: root/examples/multitouch/pinchzoom
diff options
context:
space:
mode:
authorBradley T. Hughes <bradley.hughes@nokia.com>2009-06-05 12:26:22 (GMT)
committerBradley T. Hughes <bradley.hughes@nokia.com>2009-06-05 12:30:02 (GMT)
commit12c315f34ca428c3da38716d2c071a8e94f2acf0 (patch)
tree8daf15e08c88f31d1738ab9ad7e963523b92ab2b /examples/multitouch/pinchzoom
parentbb587db95d7c20344c0bf06a1f080c0a2e4a9250 (diff)
downloadQt-12c315f34ca428c3da38716d2c071a8e94f2acf0.zip
Qt-12c315f34ca428c3da38716d2c071a8e94f2acf0.tar.gz
Qt-12c315f34ca428c3da38716d2c071a8e94f2acf0.tar.bz2
Accept TouchBegin events by default if they are enabled
After an API review round, we agreed that it makes sense for the TouchBegin event to default to accepted if the widget has subscribed to receive touch events.
Diffstat (limited to 'examples/multitouch/pinchzoom')
-rw-r--r--examples/multitouch/pinchzoom/graphicsview.cpp1
1 files changed, 0 insertions, 1 deletions
diff --git a/examples/multitouch/pinchzoom/graphicsview.cpp b/examples/multitouch/pinchzoom/graphicsview.cpp
index f763e6f..0856639 100644
--- a/examples/multitouch/pinchzoom/graphicsview.cpp
+++ b/examples/multitouch/pinchzoom/graphicsview.cpp
@@ -71,7 +71,6 @@ bool GraphicsView::event(QEvent *event)
/ QLineF(touchPoint0->startPos(), touchPoint1->startPos()).length();
setTransform(QTransform().scale(scaleFactor, scaleFactor));
}
- event->accept();
return true;
}
default: