diff options
author | Artur Signell <artur@vaadin.com> | 2013-02-14 14:49:20 +0200 |
---|---|---|
committer | Artur Signell <artur@vaadin.com> | 2013-02-14 14:52:32 +0200 |
commit | 54597654e13a2d2dd98fae14e762eb8e325ec514 (patch) | |
tree | b75fc7286046e3f0180a16a70a31556e3cef0788 /client | |
parent | 69d6f8b78983302785c6bd9ab02bd8b42194b2b7 (diff) | |
download | vaadin-framework-54597654e13a2d2dd98fae14e762eb8e325ec514.tar.gz vaadin-framework-54597654e13a2d2dd98fae14e762eb8e325ec514.zip |
Fixed problem with removing the icon from a Button (#10543)
Change-Id: Ia119b93643678494db95d36ffe031a44b76ba578
Diffstat (limited to 'client')
-rw-r--r-- | client/src/com/vaadin/client/ui/button/ButtonConnector.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/button/ButtonConnector.java b/client/src/com/vaadin/client/ui/button/ButtonConnector.java index 0439cd4fdc..9733d206c7 100644 --- a/client/src/com/vaadin/client/ui/button/ButtonConnector.java +++ b/client/src/com/vaadin/client/ui/button/ButtonConnector.java @@ -77,7 +77,7 @@ public class ButtonConnector extends AbstractComponentConnector implements } }); - addStateChangeHandler("resources.icon", new StateChangeHandler() { + addStateChangeHandler("resources", new StateChangeHandler() { @Override public void onStateChanged(StateChangeEvent stateChangeEvent) { if (getIcon() != null) { |