Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorEike Stepper2015-03-16 10:20:07 +0000
committerEike Stepper2015-03-16 10:20:07 +0000
commit3b68d7215c5665d1c9198dba072c45c12cc47317 (patch)
tree324ffaf345eb2e8b6ab518115e41808d6c08954a
parent54c5661e204e6617f74b7877cfb326a6600919d4 (diff)
downloadorg.eclipse.oomph-3b68d7215c5665d1c9198dba072c45c12cc47317.tar.gz
org.eclipse.oomph-3b68d7215c5665d1c9198dba072c45c12cc47317.tar.xz
org.eclipse.oomph-3b68d7215c5665d1c9198dba072c45c12cc47317.zip
[459486] Welcome Questionnaire: Showing config dialog on startup is bad practice
https://bugs.eclipse.org/bugs/show_bug.cgi?id=459486
-rw-r--r--plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java9
1 files changed, 5 insertions, 4 deletions
diff --git a/plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java b/plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java
index 90517724b..07eda180e 100644
--- a/plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java
+++ b/plugins/org.eclipse.oomph.setup.ui/src/org/eclipse/oomph/setup/ui/SetupUIPlugin.java
@@ -285,10 +285,11 @@ public final class SetupUIPlugin extends OomphUIPlugin
// Ignore
}
- if (!QUESTIONNAIRE_SKIP)
- {
- Questionnaire.perform(UIUtil.getShell(), false);
- }
+ // Disabled for bug 459486:
+ // if (!QUESTIONNAIRE_SKIP)
+ // {
+ // Questionnaire.perform(UIUtil.getShell(), false);
+ // }
// This performer is only used to detect a need to update or to open the setup wizard.
SetupTaskPerformer performer = null;

Back to the top