diff options
-rw-r--r-- | org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java index fe412f014..d1139800d 100644 --- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java +++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/EnvironmentTab.java @@ -91,8 +91,6 @@ public class EnvironmentTab extends AbstractLaunchConfigurationTab { // Create label Label label = new Label(tableComposite, SWT.NONE); label.setText("Environment"); - gdata = new GridData(GridData.FILL_HORIZONTAL); - label.setLayoutData(gdata); // Create table environmentTable = new TableViewer(tableComposite); Table table = environmentTable.getTable(); @@ -161,7 +159,7 @@ public class EnvironmentTab extends AbstractLaunchConfigurationTab { glayout.marginHeight = 0; glayout.marginWidth = 0; glayout.numColumns = 1; - gdata = new GridData(GridData.FILL_HORIZONTAL | GridData.VERTICAL_ALIGN_BEGINNING); + gdata = new GridData(GridData.VERTICAL_ALIGN_BEGINNING | GridData.HORIZONTAL_ALIGN_END); buttonComposite.setLayout(glayout); buttonComposite.setLayoutData(gdata); |