summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--client/src/com/vaadin/client/ui/Action.java1
1 files changed, 1 insertions, 0 deletions
diff --git a/client/src/com/vaadin/client/ui/Action.java b/client/src/com/vaadin/client/ui/Action.java
index 60d3e9aabf..84399f7611 100644
--- a/client/src/com/vaadin/client/ui/Action.java
+++ b/client/src/com/vaadin/client/ui/Action.java
@@ -46,6 +46,7 @@ public abstract class Action implements Command {
// right now because Actions are recreated every time they are needed
Icon icon = owner.getClient().getIcon(getIconUrl());
if (icon != null) {
+ icon.setAlternateText("icon");
sb.append(icon.getElement().getString());
}
sb.append(getCaption());