Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorGrant Gayed2010-03-04 17:36:31 +0000
committerGrant Gayed2010-03-04 17:36:31 +0000
commit78a8f740f3c6b657a393a18384703a04727c8884 (patch)
treefb20d0fdf59be9767c5af5f14106425c95bd66b2 /bundles/org.eclipse.swt/Eclipse SWT/motif
parente6660d03d6e1d3f82510681a4998858677b23355 (diff)
downloadeclipse.platform.swt-78a8f740f3c6b657a393a18384703a04727c8884.tar.gz
eclipse.platform.swt-78a8f740f3c6b657a393a18384703a04727c8884.tar.xz
eclipse.platform.swt-78a8f740f3c6b657a393a18384703a04727c8884.zip
small fix for released 303615 fix
Diffstat (limited to 'bundles/org.eclipse.swt/Eclipse SWT/motif')
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java
index 07eeeff63e..02ff4b5f4b 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT/motif/org/eclipse/swt/widgets/Control.java
@@ -3376,7 +3376,7 @@ boolean traverse (int traversal, char character, int keyCode, int keyLocation, i
}
case SWT.CR: {
traversal = SWT.TRAVERSE_RETURN;
- doit = false;
+ doit = true;
break;
}
case SWT.ARROW_DOWN:

Back to the top