Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJohn Cortell2008-05-01 15:29:01 +0000
committerJohn Cortell2008-05-01 15:29:01 +0000
commit756df1f7d5b33e6781f6b3c548982612ac350828 (patch)
tree36b677fe47c2e3454bced1618a89aaa1cf102a00 /build/org.eclipse.cdt.managedbuilder.ui
parent5ef40f0effd10914e8dab7786da26d787aa06039 (diff)
downloadorg.eclipse.cdt-756df1f7d5b33e6781f6b3c548982612ac350828.tar.gz
org.eclipse.cdt-756df1f7d5b33e6781f6b3c548982612ac350828.tar.xz
org.eclipse.cdt-756df1f7d5b33e6781f6b3c548982612ac350828.zip
fixed 229793. avoid CCombo glitch
Diffstat (limited to 'build/org.eclipse.cdt.managedbuilder.ui')
-rw-r--r--build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/NewVarDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/NewVarDialog.java b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/NewVarDialog.java
index ffd2605cbb3..fd9992d84d3 100644
--- a/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/NewVarDialog.java
+++ b/build/org.eclipse.cdt.managedbuilder.ui/src/org/eclipse/cdt/managedbuilder/ui/properties/NewVarDialog.java
@@ -138,7 +138,7 @@ public class NewVarDialog extends Dialog {
fMacroNameEdit = new CCombo(comp, SWT.BORDER);
fMacroNameEdit.setItems(getMacroNames());
fMacroNameEdit.setFont(comp.getFont());
- gd = new GridData(GridData.FILL_HORIZONTAL);
+ gd = new GridData(); // don't use GridData.FILL_HORIZONTAL; see bugzilla 229793
gd.horizontalSpan = 2;
gd.widthHint = IDialogConstants.ENTRY_FIELD_WIDTH + 50;
fMacroNameEdit.setLayoutData(gd);

Back to the top