Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2003-09-10 21:29:06 +0000
committerJean Michel-Lemieux2003-09-10 21:29:06 +0000
commit4bd931f954e915574b4c600a08cb7b962b491ac4 (patch)
tree8024afb1c2f4617702234487ce630dd7a61a2a1a /bundles/org.eclipse.team.cvs.ui/src
parentcae7468ef50148e1faa1eb6c88cf47e45f7fd0e9 (diff)
downloadeclipse.platform.team-4bd931f954e915574b4c600a08cb7b962b491ac4.tar.gz
eclipse.platform.team-4bd931f954e915574b4c600a08cb7b962b491ac4.tar.xz
eclipse.platform.team-4bd931f954e915574b4c600a08cb7b962b491ac4.zip
Bug 42727 [CVS] Share wizard dialog takes up entire screen width
Diffstat (limited to 'bundles/org.eclipse.team.cvs.ui/src')
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java
index 51c4d1c43..120c3acab 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/wizards/RepositorySelectionPage.java
@@ -62,6 +62,7 @@ public class RepositorySelectionPage extends CVSWizardPage {
Table table = new Table(parent, SWT.H_SCROLL | SWT.V_SCROLL | SWT.BORDER | SWT.SINGLE | SWT.FULL_SELECTION);
GridData data = new GridData(GridData.FILL_BOTH | GridData.GRAB_HORIZONTAL);
data.horizontalSpan = span;
+ data.widthHint = 200;
table.setLayoutData(data);
TableLayout layout = new TableLayout();
layout.addColumnData(new ColumnWeightData(100, true));

Back to the top