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

--- Comment #4 from Nicolas Fella <nicolas.fe...@gmx.de> ---
Indeed, it's a change from Qt 6.7. I'm not sure I want to call it a bug, the
code is rather weird. See this minimal example:

import QtQuick
import QtQuick.Layouts
import QtQuick.Controls as QQC2

Window {
    id: root

    width: contentsControl.implicitWidth
    height: contentsControl.implicitHeight

    QQC2.Control {
        id: contentsControl

        contentItem: ColumnLayout {
            QQC2.Label {
                Layout.fillHeight: true
                text: "Something something A"
            }
            QQC2.CheckBox {
                checked: true
                text: "Something something B"
            }
        }

        anchors.fill: parent
        anchors.margins: 8
    }
}

With 6.7 the text and the checkbox slightly overlap each other, in 6.6 they
don't

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

Reply via email to