Fixed bug 516527: Issues with minimized Welcome page

Change-Id: I354da714ab9afe7e6d9e8bc1f897b77556d269e4
Signed-off-by: Noopur Gupta <noopur_gupta@in.ibm.com>
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 1f7a022..73faa66 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 @@
 		// 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);