]> source.dussan.org Git - vaadin-framework.git/commitdiff
fixes #2524 (regression)
authorMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 30 Jan 2009 14:11:29 +0000 (14:11 +0000)
committerMatti Tahvonen <matti.tahvonen@itmill.com>
Fri, 30 Jan 2009 14:11:29 +0000 (14:11 +0000)
svn changeset:6688/svn branch:trunk

src/com/itmill/toolkit/terminal/gwt/client/ui/ILink.java

index 9c19e8d2df41e014276fb67325cf2d5194ce7ba9..91111a6eec57ed6b11cc1835bc150a113c1f9f8d 100644 (file)
@@ -169,7 +169,8 @@ public class ILink extends HTML implements Paintable, ClickListener {
         if (client != null) {
             client.handleTooltipEvent(event, this);
         }
-        if (target == anchor || (icon != null && target == icon.getElement())) {
+        if (target == captionElement || target == anchor
+                || (icon != null && target == icon.getElement())) {
             super.onBrowserEvent(event);
         }
         if (!enabled) {