diff options
author | Matti Tahvonen <matti.tahvonen@itmill.com> | 2008-04-24 10:20:36 +0000 |
---|---|---|
committer | Matti Tahvonen <matti.tahvonen@itmill.com> | 2008-04-24 10:20:36 +0000 |
commit | d59f916e26d2a9eb89c8d5c326b48f38216115dc (patch) | |
tree | bcc5a352945803bb876a456e95f80e9c6f284897 | |
parent | 8df611745ad8df4b5dab963c4f58d0866fb34b5e (diff) | |
download | vaadin-framework-d59f916e26d2a9eb89c8d5c326b48f38216115dc.tar.gz vaadin-framework-d59f916e26d2a9eb89c8d5c326b48f38216115dc.zip |
ensure repaint on composition root changes
svn changeset:4220/svn branch:trunk
-rw-r--r-- | src/com/itmill/toolkit/ui/CustomComponent.java | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/com/itmill/toolkit/ui/CustomComponent.java b/src/com/itmill/toolkit/ui/CustomComponent.java index cd5c6725d4..5bf6f5d93e 100644 --- a/src/com/itmill/toolkit/ui/CustomComponent.java +++ b/src/com/itmill/toolkit/ui/CustomComponent.java @@ -93,6 +93,7 @@ public class CustomComponent extends AbstractComponentContainer { super.addComponent(compositionRoot); } root = compositionRoot; + requestRepaint(); } } |