removed style parameter for combobox. Quick fix for ticket #4289. Needs to be reviewed.
authorAlexander Oppermann <a.oppermann@bgbm.org>
Wed, 16 Jul 2014 09:29:46 +0000 (09:29 +0000)
committerAlexander Oppermann <a.oppermann@bgbm.org>
Wed, 16 Jul 2014 09:29:46 +0000 (09:29 +0000)
eu.etaxonomy.taxeditor.store/src/main/java/eu/etaxonomy/taxeditor/ui/combo/TermComboElement.java

index 8323e62dc7280fe880371324039e4c88611355f3..42ead4bfcd703b90b12f6cc80127fa0319c48657 100644 (file)
@@ -104,7 +104,7 @@ public class TermComboElement<T extends DefinedTermBase>
         }
 
         // create combo
         }
 
         // create combo
-        combo = new Combo(getLayoutComposite(), SWT.BORDER | SWT.READ_ONLY | style);
+        combo = new Combo(getLayoutComposite(), SWT.BORDER | SWT.READ_ONLY );//FIXME: removed this parameter seems break windows version: | style
         addControl(combo);
         combo.setLayoutData(LayoutConstants.FILL_HORIZONTALLY());
         combo.setVisibleItemCount(DEFAULT_VISIBLE_ITEMS);
         addControl(combo);
         combo.setLayoutData(LayoutConstants.FILL_HORIZONTALLY());
         combo.setVisibleItemCount(DEFAULT_VISIBLE_ITEMS);