Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMike Rennie2012-07-17 15:51:14 +0000
committerMike Rennie2012-07-17 15:51:14 +0000
commitefd7c3127870daab51ebfbc3a2e9b5f262651d1b (patch)
tree45d3f00c87dfb5fa8314b7a57b503922b7c74989 /org.eclipse.debug.ui/ui/org/eclipse
parent1570cacb1959a671ff5b61e43492d7896436f5d6 (diff)
downloadeclipse.platform.debug-efd7c3127870daab51ebfbc3a2e9b5f262651d1b.tar.gz
eclipse.platform.debug-efd7c3127870daab51ebfbc3a2e9b5f262651d1b.tar.xz
eclipse.platform.debug-efd7c3127870daab51ebfbc3a2e9b5f262651d1b.zip
Bug 327193 - [patch] Launching command line exceeds the windows limit
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/ProcessPropertyPage.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/ProcessPropertyPage.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/ProcessPropertyPage.java
index e4fa956f1..8c9c39c4e 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/ProcessPropertyPage.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/preferences/ProcessPropertyPage.java
@@ -96,7 +96,7 @@ public class ProcessPropertyPage extends PropertyPage {
//create environment section
SWTFactory.createLabel(parent, DebugPreferencesMessages.ProcessPropertyPage_7, fHeadingFont, 1);
text = SWTFactory.createText(parent,
- SWT.WRAP | SWT.READ_ONLY | SWT.BORDER | SWT.V_SCROLL,
+ SWT.H_SCROLL | SWT.READ_ONLY | SWT.BORDER | SWT.V_SCROLL,
1,
convertWidthInCharsToPixels(13),
convertHeightInCharsToPixels(8),

Back to the top