diff options
author | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-06-05 12:26:22 (GMT) |
---|---|---|
committer | Bradley T. Hughes <bradley.hughes@nokia.com> | 2009-06-05 12:30:02 (GMT) |
commit | 12c315f34ca428c3da38716d2c071a8e94f2acf0 (patch) | |
tree | 8daf15e08c88f31d1738ab9ad7e963523b92ab2b /examples/multitouch/knobs | |
parent | bb587db95d7c20344c0bf06a1f080c0a2e4a9250 (diff) | |
download | Qt-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/knobs')
-rw-r--r-- | examples/multitouch/knobs/knob.cpp | 4 |
1 files changed, 0 insertions, 4 deletions
diff --git a/examples/multitouch/knobs/knob.cpp b/examples/multitouch/knobs/knob.cpp index b7cc6f3..bced73c 100644 --- a/examples/multitouch/knobs/knob.cpp +++ b/examples/multitouch/knobs/knob.cpp @@ -63,9 +63,6 @@ bool Knob::sceneEvent(QEvent *event) { switch (event->type()) { case QEvent::GraphicsSceneTouchBegin: - event->accept(); - break; - case QEvent::GraphicsSceneTouchUpdate: case QEvent::GraphicsSceneTouchEnd: { @@ -81,7 +78,6 @@ bool Knob::sceneEvent(QEvent *event) rotate(line2.angleTo(line1)); } - touchEvent->accept(); break; } |