Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDarin Wright2003-03-07 20:56:12 +0000
committerDarin Wright2003-03-07 20:56:12 +0000
commited7f9e4eb817fa226cf5114acecfdc0d9f018c3f (patch)
treee512f1ca85b7db233d1eff61ac0e2e1003c41d5f /org.eclipse.debug.ui/ui/org/eclipse/debug/internal
parent370ab68d43658eedb13a2f5d6f48c2cf9893a331 (diff)
downloadeclipse.platform.debug-ed7f9e4eb817fa226cf5114acecfdc0d9f018c3f.tar.gz
eclipse.platform.debug-ed7f9e4eb817fa226cf5114acecfdc0d9f018c3f.tar.xz
eclipse.platform.debug-ed7f9e4eb817fa226cf5114acecfdc0d9f018c3f.zip
bug 32335 - Eclipse M5, launcher, arguments tab truncatedv20030310-precopyrightupdate
Diffstat (limited to 'org.eclipse.debug.ui/ui/org/eclipse/debug/internal')
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
index e22a32349..0e5c40d1c 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/LaunchConfigurationsDialog.java
@@ -210,13 +210,13 @@ public class LaunchConfigurationsDialog extends TitleAreaDialog implements ILaun
* Constant specifying how wide this dialog is allowed to get (as a percentage of
* total available screen width) as a result of tab labels in the edit area.
*/
- protected static final float MAX_DIALOG_WIDTH_PERCENT = 0.90f;
+ protected static final float MAX_DIALOG_WIDTH_PERCENT = 0.70f;
/**
* Constant specifying how tall this dialog is allowed to get (as a percentage of
* total available screen height) as a result of preferred tab size.
*/
- protected static final float MAX_DIALOG_HEIGHT_PERCENT = 0.90f;
+ protected static final float MAX_DIALOG_HEIGHT_PERCENT = 0.70f;
/**
* Empty array

Back to the top