diff options
-rw-r--r-- | client/src/com/vaadin/client/ComponentLocator.java | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/client/src/com/vaadin/client/ComponentLocator.java b/client/src/com/vaadin/client/ComponentLocator.java index c286b2fb9d..c57a143b27 100644 --- a/client/src/com/vaadin/client/ComponentLocator.java +++ b/client/src/com/vaadin/client/ComponentLocator.java @@ -519,7 +519,8 @@ public class ComponentLocator { */ if ((w instanceof VMeasuringOrderedLayout || w instanceof VBoxLayout || w instanceof VGridLayout) - && "ChildComponentContainer".equals(widgetClassName) + && ("ChildComponentContainer".equals(widgetClassName) || "VBoxLayout$Slot" + .equals(widgetClassName)) && i + 1 < parts.length) { HasWidgets layout = (HasWidgets) w; |