Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorMichael Valenta2003-04-28 18:06:21 +0000
committerMichael Valenta2003-04-28 18:06:21 +0000
commit70e75c5784a66514637502f7619fcc1b1d06a795 (patch)
treed9212a79ba95cf67f43df094bc965adac9a7132b
parent3467b225ce78e026cbac1e84d64158d512b86820 (diff)
downloadeclipse.platform.team-70e75c5784a66514637502f7619fcc1b1d06a795.tar.gz
eclipse.platform.team-70e75c5784a66514637502f7619fcc1b1d06a795.tar.xz
eclipse.platform.team-70e75c5784a66514637502f7619fcc1b1d06a795.zip
35671: 'Synchronize CVS projects' does not always synchronized all projectsI20030429
-rw-r--r--bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/WorkingSetSelectionArea.java13
1 files changed, 8 insertions, 5 deletions
diff --git a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/WorkingSetSelectionArea.java b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/WorkingSetSelectionArea.java
index 96eed3977..170a65979 100644
--- a/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/WorkingSetSelectionArea.java
+++ b/bundles/org.eclipse.team.cvs.ui/src/org/eclipse/team/internal/ccvs/ui/WorkingSetSelectionArea.java
@@ -129,11 +129,7 @@ public class WorkingSetSelectionArea extends DialogArea {
data.horizontalIndent=15;
mruList.setLayoutData(data);
mruList.setFont(composite.getFont());
- mruList.addSelectionListener(new SelectionAdapter() {
- public void widgetSelected(SelectionEvent e) {
- handleMruSelection();
- }
- });
+
selectButton = createButton(composite, Policy.bind("WorkingSetSelectionArea.workingSetOther"), GridData.HORIZONTAL_ALIGN_FILL); //$NON-NLS-1$
selectButton.addSelectionListener(new SelectionAdapter() {
public void widgetSelected(SelectionEvent event) {
@@ -143,6 +139,13 @@ public class WorkingSetSelectionArea extends DialogArea {
initializeMru();
initializeWorkingSet();
+
+ mruList.addSelectionListener(new SelectionAdapter() {
+ public void widgetSelected(SelectionEvent e) {
+ handleMruSelection();
+ }
+ });
+
return composite;
}

Back to the top