diff --git a/core/Column.qml b/core/Column.qml index 5cb9af2c..7c4f9141 100644 --- a/core/Column.qml +++ b/core/Column.qml @@ -32,7 +32,7 @@ Layout { if (r > w) w = r c.viewY = p + tm - if (c.recursiveVisible) + if (c.visible) p += c.height + tm + bm + this.spacing } if (p > 0) diff --git a/core/Row.qml b/core/Row.qml index 3c9349f4..a6c4680e 100644 --- a/core/Row.qml +++ b/core/Row.qml @@ -32,7 +32,7 @@ Layout { if (b > h) h = b c.viewX = p + rm - if (c.recursiveVisible) + if (c.visible) p += c.width + this.spacing + rm + lm } if (p > 0)