diff options
author | Artur Signell <artur@vaadin.com> | 2012-10-26 13:56:21 +0000 |
---|---|---|
committer | Vaadin Code Review <review@vaadin.com> | 2012-10-26 13:56:21 +0000 |
commit | 1d20bee6af61e1297e4b65028fffc158d35999a0 (patch) | |
tree | 410fbe6e17999a86595f0e32ddfbbbe29ccb2f0e | |
parent | ca21360528b46e353616d0059d8205d56d7a1279 (diff) | |
parent | e0d119d827271e0a29026bdc82c5814bcb6f06e5 (diff) | |
download | vaadin-framework-1d20bee6af61e1297e4b65028fffc158d35999a0.tar.gz vaadin-framework-1d20bee6af61e1297e4b65028fffc158d35999a0.zip |
Merge "Fixed captions not visible in AbsoluteLayout #10083"
-rw-r--r-- | client/src/com/vaadin/client/ui/absolutelayout/VAbsoluteLayout.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ui/absolutelayout/VAbsoluteLayout.java b/client/src/com/vaadin/client/ui/absolutelayout/VAbsoluteLayout.java index 7c1c734aa0..26ee4409fb 100644 --- a/client/src/com/vaadin/client/ui/absolutelayout/VAbsoluteLayout.java +++ b/client/src/com/vaadin/client/ui/absolutelayout/VAbsoluteLayout.java @@ -165,7 +165,7 @@ public class VAbsoluteLayout extends ComplexPanel { if (wrapper != null) { if (caption != null) { if (!getChildren().contains(caption)) { - add(caption); + super.add(caption, canvas); } wrapper.setCaption(caption); caption.updateCaption(); |