https://bugs.kde.org/show_bug.cgi?id=459284

Nate Graham <n...@kde.org> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
             Status|REPORTED                    |CONFIRMED
     Ever confirmed|0                           |1

--- Comment #1 from Nate Graham <n...@kde.org> ---
This code looks suspicious:

height: Math.max(root.flickable.height, implicitHeight)
            implicitHeight: {
                let impl = 0;
                for (let i in itemsParent.visibleChildren) {
                    let child = itemsParent.visibleChildren[i];
                    if (child.implicitHeight <= 0) {
                        impl = Math.max(impl, child.height);
                    } else {
                        impl = Math.max(impl, child.implicitHeight);
                    }
                }
                return impl + itemsParent.anchors.topMargin +
itemsParent.anchors.bottomMargin;
            }

-- 
You are receiving this mail because:
You are watching all bug changes.

Reply via email to