Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Keppler2019-11-10 11:06:40 +0000
committerAlexander Kurtakov2019-12-21 11:09:35 +0000
commit2e12c38e53c73f7c4d65301d955a36caa57ed73b (patch)
tree151dc97a4d143a47a71d68608ad9ef878611cf64
parentf0006450b883f1ff70f1de88dcc32c50924b3279 (diff)
downloadeclipse.platform.debug-2e12c38e53c73f7c4d65301d955a36caa57ed73b.tar.gz
eclipse.platform.debug-2e12c38e53c73f7c4d65301d955a36caa57ed73b.tar.xz
eclipse.platform.debug-2e12c38e53c73f7c4d65301d955a36caa57ed73b.zip
Bug 552883 - Organize Favorites dialog too small
Enlarge dialog in both directions to deal with nowadays larger fonts. Change-Id: I5cf3428a3b4cfccf30723dfc595f5cb74e115e3a Signed-off-by: Michael Keppler <Michael.Keppler@gmx.de>
-rw-r--r--org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java
index c6150ad54..c53a5e21a 100644
--- a/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java
+++ b/org.eclipse.debug.ui/ui/org/eclipse/debug/internal/ui/launchConfigurations/FavoritesDialog.java
@@ -183,7 +183,7 @@ public class FavoritesDialog extends TrayDialog {
@Override
protected Point getInitialSize() {
- return new Point(350, 400);
+ return new Point(450, 500);
}
/**

Back to the top