Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJean Michel-Lemieux2004-06-08 02:49:30 +0000
committerJean Michel-Lemieux2004-06-08 02:49:30 +0000
commit59a1a577fdba3fe577ca8f153fca4acaed1853db (patch)
tree780130b2f64f3c65df7a6a911cba82b0368dc862 /bundles
parent6d789e5b5802cae47a67de72c04d26d9d54f6116 (diff)
downloadeclipse.platform.team-59a1a577fdba3fe577ca8f153fca4acaed1853db.tar.gz
eclipse.platform.team-59a1a577fdba3fe577ca8f153fca4acaed1853db.tar.xz
eclipse.platform.team-59a1a577fdba3fe577ca8f153fca4acaed1853db.zip
Bug 66068 Team > Share can't switch to first wizard if others are hidden by a capability
Diffstat (limited to 'bundles')
-rw-r--r--bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigureProjectWizard.java2
1 files changed, 1 insertions, 1 deletions
diff --git a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigureProjectWizard.java b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigureProjectWizard.java
index 6a7e7e521..b1414ebe8 100644
--- a/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigureProjectWizard.java
+++ b/bundles/org.eclipse.team.ui/src/org/eclipse/team/internal/ui/wizards/ConfigureProjectWizard.java
@@ -69,7 +69,7 @@ public class ConfigureProjectWizard extends Wizard implements IConfigurationWiza
public void addPages() {
AdaptableList disabledWizards = new AdaptableList();
AdaptableList wizards = getAvailableWizards(disabledWizards);
- if (wizards.size() == 1) {
+ if (wizards.size() == 1 && disabledWizards.size() == 0) {
// If there is only one wizard, skip the first page.
// Only skip the first page if the one wizard has at least one page.
ConfigurationWizardElement element = (ConfigurationWizardElement)wizards.getChildren()[0];

Back to the top