Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorjames2002-05-13 20:37:49 +0000
committerjames2002-05-13 20:37:49 +0000
commit6ee4d576b064d34af5f2251eb15a7689451c6c06 (patch)
tree80ee7ffadee2bb68c1727ce20c2a2a3f3c240efc
parent28ae6bc583fa198b5ba407d071efc06c8e6320bf (diff)
downloadeclipse.platform.team-6ee4d576b064d34af5f2251eb15a7689451c6c06.tar.gz
eclipse.platform.team-6ee4d576b064d34af5f2251eb15a7689451c6c06.tar.xz
eclipse.platform.team-6ee4d576b064d34af5f2251eb15a7689451c6c06.zip
15851: Project Set import cannot be cancelled
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/ProjectSetImportWizard.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/ProjectSetImportWizard.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/ProjectSetImportWizard.java
index e79f0e46a..913f7d639 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/ProjectSetImportWizard.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/ProjectSetImportWizard.java
@@ -49,7 +49,7 @@ public class ProjectSetImportWizard extends Wizard implements IImportWizard {
public boolean performFinish() {
final boolean[] result = new boolean[] {false};
try {
- getContainer().run(true, false, new IRunnableWithProgress() {
+ getContainer().run(true, true, new IRunnableWithProgress() {
public void run(IProgressMonitor monitor) throws InvocationTargetException {
InputStreamReader reader = null;
try {

Back to the top