Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjszursze2002-05-16 21:23:24 +0000
committerjszursze2002-05-16 21:23:24 +0000
commitaff525d08df4ed928df01ebffd8b59094aceebd3 (patch)
tree511e3af15aad107896ace205f2cc8207fdafc701 /org.eclipse.debug.ui
parent39094c3f8e3f0d724bc89a3db5ce5d81eeeb971f (diff)
downloadeclipse.platform.debug-aff525d08df4ed928df01ebffd8b59094aceebd3.tar.gz
eclipse.platform.debug-aff525d08df4ed928df01ebffd8b59094aceebd3.tar.xz
eclipse.platform.debug-aff525d08df4ed928df01ebffd8b59094aceebd3.zip
fine-tune layout
Diffstat (limited to 'org.eclipse.debug.ui')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java4
1 files changed, 4 insertions, 0 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
index 35052f07a..3976740a2 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/ui/CommonTab.java
@@ -177,6 +177,8 @@ public class CommonTab extends AbstractLaunchConfigurationTab {
Composite perspComp = new Composite(comp, SWT.NONE);
GridLayout perspLayout = new GridLayout();
+ perspLayout.marginHeight = 0;
+ perspLayout.marginWidth = 0;
perspLayout.numColumns = 2;
perspComp.setLayout(perspLayout);
@@ -200,6 +202,8 @@ public class CommonTab extends AbstractLaunchConfigurationTab {
Composite favComp = new Composite(comp, SWT.NONE);
GridLayout favLayout = new GridLayout();
+ favLayout.marginHeight = 0;
+ favLayout.marginWidth = 0;
favLayout.numColumns = 1;
favComp.setLayout(favLayout);

Back to the top