Skip to content

Commit d74949c

Browse files
committed
fix typo in Row - do not layout elements without width
(this shouldn't really affect anything as normally items have both width/height)
1 parent e04f954 commit d74949c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

core/Row.qml

+1-1
Original file line numberDiff line numberDiff line change
@@ -22,7 +22,7 @@ Layout {
2222
this.count = children.length
2323
for(var i = 0; i < children.length; ++i) {
2424
var c = children[i]
25-
if (!('height' in c))
25+
if (!('width' in c))
2626
continue
2727

2828
var rm = c.anchors.rightMargin || c.anchors.margins

0 commit comments

Comments
 (0)