Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorVikas Chandra2020-11-11 13:17:59 +0000
committerSarika Sinha2020-11-23 06:50:46 +0000
commitbe976860c17e2b133ec5238083761887f17db8a5 (patch)
treed0e9040f943ebeb926bfa1f97cafeac6ca914234
parent8ef1ae4c60afadaff2ef6ebc924583e0ec98fa06 (diff)
downloadeclipse.platform.debug-be976860c17e2b133ec5238083761887f17db8a5.tar.gz
eclipse.platform.debug-be976860c17e2b133ec5238083761887f17db8a5.tar.xz
eclipse.platform.debug-be976860c17e2b133ec5238083761887f17db8a5.zip
readibility Change-Id: Ib2b1ca6697414fea40114a337197a36e6e1820be Signed-off-by: Vikas Chandra <Vikas.Chandra@in.ibm.com>
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ShowCommandLineDialog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ShowCommandLineDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ShowCommandLineDialog.java
index a5c1c0772..981f7839b 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ShowCommandLineDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/ShowCommandLineDialog.java
@@ -93,8 +93,8 @@ public class ShowCommandLineDialog extends Dialog {
GridLayout topLayout = new GridLayout();
group.setLayout(topLayout);
GridData gd = new GridData(GridData.FILL_BOTH);
- gd.heightHint = convertHeightInCharsToPixels(15);
- gd.widthHint = convertWidthInCharsToPixels(50);
+ gd.heightHint = convertHeightInCharsToPixels(20);
+ gd.widthHint = convertWidthInCharsToPixels(90);
group.setLayoutData(gd);
group.setFont(font);

Back to the top