Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2007-07-31 19:41:14 +0000
committerMichael Valenta2007-07-31 19:41:14 +0000
commit303c9c52d2589f928759e96ec581f6ae6bdd9dcf (patch)
tree855321e5d164532825618482facaee4e48704acc
parent916f22533209bddc63a0fe9ecb7d9998005c2260 (diff)
downloadeclipse.platform.team-303c9c52d2589f928759e96ec581f6ae6bdd9dcf.tar.gz
eclipse.platform.team-303c9c52d2589f928759e96ec581f6ae6bdd9dcf.tar.xz
eclipse.platform.team-303c9c52d2589f928759e96ec581f6ae6bdd9dcf.zip
Adjusted the initial size of the dialog
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ConfigureRepositoryLocationsDialog.java5
1 files changed, 4 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ConfigureRepositoryLocationsDialog.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ConfigureRepositoryLocationsDialog.java
index dd450ee15..d6914f0df 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ConfigureRepositoryLocationsDialog.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/ConfigureRepositoryLocationsDialog.java
@@ -194,8 +194,11 @@ public class ConfigureRepositoryLocationsDialog extends TitleAreaDialog {
String sectionName = getClass().getName() + "_dialogBounds"; //$NON-NLS-1$
IDialogSettings settings = CVSUIPlugin.getPlugin().getDialogSettings();
IDialogSettings section = settings.getSection(sectionName);
- if (section == null)
+ if (section == null) {
section = settings.addNewSection(sectionName);
+ section.put("DIALOG_HEIGHT", 300); //$NON-NLS-1$
+ section.put("DIALOG_WIDTH", 600); //$NON-NLS-1$
+ }
return section;
}

Back to the top