summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorScott Kovatch <skovatch>2011-01-21 16:51:43 +0000
committerScott Kovatch <skovatch>2011-01-21 16:51:43 +0000
commita3fca8e5dea31a82c4ad065e8e34046af5dd369c (patch)
tree725a1b06170c39dafb32e19161abce12b2acc670
parenta1fedece41e31e9553bf3e514c2a2564f31a9dec (diff)
downloadeclipse.platform.swt-a3fca8e5dea31a82c4ad065e8e34046af5dd369c.tar.gz
eclipse.platform.swt-a3fca8e5dea31a82c4ad065e8e34046af5dd369c.tar.xz
eclipse.platform.swt-a3fca8e5dea31a82c4ad065e8e34046af5dd369c.zip
Don't bubble touch events
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
index d6c8261ba4..dad47b0aa7 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java
@@ -4426,7 +4426,7 @@ boolean touchEvent(int /*long*/ id, int /*long*/ sel, int /*long*/ eventPtr) {
event.touches = touches;
postEvent (SWT.Touch, event);
- return event.doit;
+ return true;
}
void touchesBeganWithEvent (int /*long*/ id, int /*long*/ sel, int /*long*/ event) {