We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 81cacaf + 259ca0a commit 2dc7248Copy full SHA for 2dc7248
src/qml/controls/OptionButton.qml
@@ -33,6 +33,7 @@ Button {
33
spacing: 3
34
ColumnLayout {
35
36
+ Layout.fillWidth: true
37
Header {
38
Layout.fillWidth: true
39
Layout.preferredWidth: 0
@@ -64,11 +65,12 @@ Button {
64
65
}
66
67
- Loader {
68
- id: detail_loader
69
- visible: button.checked
70
- active: true
71
- sourceComponent: Button {
+ Item {
+ height: parent.height
+ width: 40
+ Button {
72
+ anchors.centerIn: parent
73
+ visible: button.checked
74
icon.source: "image://images/check"
75
icon.color: Theme.color.neutral9
76
icon.height: 24
0 commit comments