Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorFelipe Heidrich2003-09-11 16:49:27 +0000
committerFelipe Heidrich2003-09-11 16:49:27 +0000
commit43574615e6b10fe69befa4838fe21da858848c52 (patch)
treec6e4fd267b5b989f89052c2f89098a26ceb7ca99
parentde76c9ac4518163b63a111e941a344308d4006cb (diff)
downloadeclipse.platform.swt-43574615e6b10fe69befa4838fe21da858848c52.tar.gz
eclipse.platform.swt-43574615e6b10fe69befa4838fe21da858848c52.tar.xz
eclipse.platform.swt-43574615e6b10fe69befa4838fe21da858848c52.zip
*** empty log message ***
-rwxr-xr-xbundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
index 50b0a55f86..ffd2eb786f 100755
--- a/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
+++ b/bundles/org.eclipse.swt/Eclipse SWT Custom Widgets/common/org/eclipse/swt/custom/CCombo.java
@@ -85,6 +85,7 @@ public CCombo (Composite parent, int style) {
int listStyle = SWT.SINGLE | SWT.V_SCROLL;
if ((style & SWT.FLAT) != 0) listStyle |= SWT.FLAT;
if ((style & SWT.RIGHT_TO_LEFT) != 0) listStyle |= SWT.RIGHT_TO_LEFT;
+ if ((style & SWT.LEFT_TO_RIGHT) != 0) listStyle |= SWT.LEFT_TO_RIGHT;
list = new List (popup, listStyle);
int arrowStyle = SWT.ARROW | SWT.DOWN;

Back to the top