Details
-
Bug
-
Resolution: Unresolved
-
P2: Important
-
None
-
5.15, 6.8.3
-
None
Description
Tested and affected properties:
- spacing
- topInset
- bottomInset
- leftInset
- rightInset
Here's a minimum example to reproduce this issue:
import QtQuick 2.12 import QtQuick.Window 2.12 import QtQuick.Controls 2.12 Window { width: 320 height: 240 visible: true title: "Unbindable Properties" Dialog { id: dialog anchors.centerIn: parent visible: true closePolicy: Popup.NoAutoClose contentItem: Column { spacing: dialog.spacing Button { text: "Increase Spacing: " + dialog.spacing onClicked: ++dialog.spacing // not working } Button { text: "Increase Padding: " + dialog.padding onClicked: ++dialog.padding // works } } } }