Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorNoopur Gupta2017-05-15 13:35:36 +0000
committerNoopur Gupta2017-05-15 13:35:50 +0000
commit2785199da7c9bc29809517e98837a115b340eb67 (patch)
tree2257bc6fab96245f7b45fe7220d7b5e32e0ba72b
parent279a7bb857c4e76b6fb132b8c8369fc53b41a78c (diff)
downloadeclipse.platform.ua-2785199da7c9bc29809517e98837a115b340eb67.tar.gz
eclipse.platform.ua-2785199da7c9bc29809517e98837a115b340eb67.tar.xz
eclipse.platform.ua-2785199da7c9bc29809517e98837a115b340eb67.zip
Fixed bug 516527: Issues with minimized Welcome page
Change-Id: I354da714ab9afe7e6d9e8bc1f897b77556d269e4 Signed-off-by: Noopur Gupta <noopur_gupta@in.ibm.com>
-rw-r--r--org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/UniversalIntroConfigurer.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/UniversalIntroConfigurer.java b/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/UniversalIntroConfigurer.java
index 1f7a02254..73faa6600 100644
--- a/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/UniversalIntroConfigurer.java
+++ b/org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/UniversalIntroConfigurer.java
@@ -1,5 +1,5 @@
/*******************************************************************************
- * Copyright (c) 2006, 2009 IBM Corporation and others.
+ * Copyright (c) 2006, 2017 IBM Corporation and others.
* All rights reserved. This program and the accompanying materials
* are made available under the terms of the Eclipse Public License v1.0
* which accompanies this distribution, and is available at
@@ -245,9 +245,9 @@ public class UniversalIntroConfigurer extends IntroConfigurer implements
// root-like pages have more details on the page and action links
boolean rootLike = pageId.equals(ID_ROOT) || isStartPage(pageId) || pageId.equals(ID_STANDBY);
if (rootLike && groupId.equals(DIV_PAGE_LINKS))
- return getRootPageLinks(false);
+ return getRootPageLinks(pageId.equals(ID_STANDBY));
if (rootLike && groupId.equals(DIV_ACTION_LINKS))
- return getRootPageActionLinks(false);
+ return getRootPageActionLinks(pageId.equals(ID_STANDBY));
// other pages
if (groupId.equals(DIV_PAGE_LINKS))
return getNavLinks(pageId);

Back to the top