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

Nicolas Fella <nicolas.fe...@gmx.de> changed:

           What    |Removed                     |Added
----------------------------------------------------------------------------
                 CC|                            |nicolas.fe...@gmx.de

--- Comment #2 from Nicolas Fella <nicolas.fe...@gmx.de> ---
It's a change in Qt 6.7

Minimal example code

import QtQuick
import QtQuick.Controls as QQC2
import QtQuick.Layouts
import org.kde.kirigami as Kirigami

Kirigami.ScrollablePage {
    ListView {
        footer: ColumnLayout {
            anchors.horizontalCenter: parent.horizontalCenter
            QQC2.BusyIndicator {
                running: parent.visible
                Layout.alignment: Qt.AlignCenter
                Layout.preferredWidth: 40
                Layout.preferredHeight: 40
            }
        }
    }
}

It prints
> QML ColumnLayout: Possible anchor loop detected on horizontal anchor.

which reminds me of https://bugreports.qt.io/browse/QTBUG-120197, and indeed
our code is similarly questionable

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

Reply via email to