diff options
author | Scott Kovatch <skovatch> | 2011-01-21 16:51:43 +0000 |
---|---|---|
committer | Scott Kovatch <skovatch> | 2011-01-21 16:51:43 +0000 |
commit | a3fca8e5dea31a82c4ad065e8e34046af5dd369c (patch) | |
tree | 725a1b06170c39dafb32e19161abce12b2acc670 | |
parent | a1fedece41e31e9553bf3e514c2a2564f31a9dec (diff) | |
download | eclipse.platform.swt-a3fca8e5dea31a82c4ad065e8e34046af5dd369c.tar.gz eclipse.platform.swt-a3fca8e5dea31a82c4ad065e8e34046af5dd369c.tar.xz eclipse.platform.swt-a3fca8e5dea31a82c4ad065e8e34046af5dd369c.zip |
Don't bubble touch events
-rwxr-xr-x | bundles/org.eclipse.swt/Eclipse SWT/cocoa/org/eclipse/swt/widgets/Control.java | 2 |
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) { |