-
Suggestion
-
Resolution: Unresolved
-
P3: Somewhat important
-
None
-
6.5.1
-
None
-
1bab963f8 (dev), abd787570 (6.5), aef1f8022 (6.6)
In the following code, the Material.foreground property is applied to both buttons, but the Material.roundedScale is not.
import QtQuick import QtQuick.Window import QtQuick.Controls.Material Window { width: 640 height: 480 visible: true title: qsTr("Hello World") Material.foreground: Material.Pink Material.roundedScale: Material.NotRounded Button { text: "hello" // this works here: Material.roundedScale: Material.NotRounded } Button { y: 200 text: "hello2" } }