bug 85101: redesign install wizard to use background jobs for searching
diff --git a/update/org.eclipse.update.scheduler/src/org/eclipse/update/internal/scheduler/SchedulerStartup.java b/update/org.eclipse.update.scheduler/src/org/eclipse/update/internal/scheduler/SchedulerStartup.java
index 468baba..a62d6a9 100644
--- a/update/org.eclipse.update.scheduler/src/org/eclipse/update/internal/scheduler/SchedulerStartup.java
+++ b/update/org.eclipse.update.scheduler/src/org/eclipse/update/internal/scheduler/SchedulerStartup.java
@@ -111,17 +111,18 @@
                         UpdateUI.getStandardDisplay().asyncExec(new Runnable() {
                             public void run() {
                                 asyncNotifyDownloadUser();
+                                scheduleUpdateJob();
                             }
                         });
                     } else {
                         UpdateUI.getStandardDisplay().asyncExec(new Runnable() {
                             public void run() {
                                 asyncNotifyUser();
+                                scheduleUpdateJob();
                             }
                         });
                     }
                 }
-				scheduleUpdateJob();
 			}
 		}