Skip to main content
aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorLars Vogel2020-02-17 11:37:00 +0000
committerLars Vogel2020-02-17 12:22:08 +0000
commitba44593c6c2c3c9043beb2e8fbf70a560522e1ed (patch)
treecb210eb28cd4f6e9fe0b151580ead6db343b1867
parent6467b78d26822b22215ab2c87409a9ced3abcaa4 (diff)
downloadeclipse.platform.ua-ba44593c6c2c3c9043beb2e8fbf70a560522e1ed.tar.gz
eclipse.platform.ua-ba44593c6c2c3c9043beb2e8fbf70a560522e1ed.tar.xz
eclipse.platform.ua-ba44593c6c2c3c9043beb2e8fbf70a560522e1ed.zip
Bug 552545 - Change default for "Always show Welcome at start up"
Welcome page Change-Id: I7e93f7c874caf8034fe4902051505f7b540d8390 Signed-off-by: Lars Vogel <Lars.Vogel@vogella.com>
-rw-r--r--org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java
index 78f0d5400..596cfa29a 100644
--- a/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java
+++ b/org.eclipse.ui.intro/src/org/eclipse/ui/intro/contentproviders/AlwaysWelcomeCheckbox.java
@@ -154,9 +154,9 @@ public class AlwaysWelcomeCheckbox implements IIntroContentProvider,IIntroAction
public boolean getAlwaysShowIntroPref()
{
- // If uninitialized, we will default to true (box will be checked)
+ // If uninitialized, we will default to false (box will be checked)
if (!ReopenUtil.isReopenPreferenceInitialized()) {
- setAlwaysShowIntroPref(true);
+ setAlwaysShowIntroPref(false);
}
return ReopenUtil.isReopenPreference();
}

Back to the top