Skip to main content
summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorChris Goldthorpe2009-04-13 17:03:02 +0000
committerChris Goldthorpe2009-04-13 17:03:02 +0000
commitef3715321514702e85126a7f5816080780c4249e (patch)
treed7b8697a3ad000b65553d83f3a96b6ed5c42c909 /org.eclipse.ui.intro.universal
parent89155939d92a8e0311d19df89c331718e2464b2f (diff)
downloadeclipse.platform.ua-ef3715321514702e85126a7f5816080780c4249e.tar.gz
eclipse.platform.ua-ef3715321514702e85126a7f5816080780c4249e.tar.xz
eclipse.platform.ua-ef3715321514702e85126a7f5816080780c4249e.zip
Bug 270930 – [Intro] Tooltips on welcome screen overlap real text
Diffstat (limited to 'org.eclipse.ui.intro.universal')
-rw-r--r--org.eclipse.ui.intro.universal/src/org/eclipse/ui/internal/intro/universal/UniversalIntroConfigurer.java3
1 files changed, 2 insertions, 1 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 6b2da0458..1affcabba 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, 2008 IBM Corporation and others.
+ * Copyright (c) 2006, 2009 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
@@ -459,6 +459,7 @@ public class UniversalIntroConfigurer extends IntroConfigurer implements
img.setAttribute("src", value); //$NON-NLS-1$
}
img.setAttribute("alt", imgAlt); //$NON-NLS-1$
+ img.setAttribute("title", ""); //$NON-NLS-1$ //$NON-NLS-2$
IntroElement text = new IntroElement("text"); //$NON-NLS-1$
text.setValue(imgText);
element.addChild(img);

Back to the top