Skip to content

Commit 08134a8

Browse files
committed
fix: widget click popup not loading presets properly
1 parent 444311f commit 08134a8

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

package/contents/ui/main.qml

+3-1
Original file line numberDiff line numberDiff line change
@@ -1870,11 +1870,13 @@ PlasmoidItem {
18701870
model: presetsModel
18711871
delegate: PlasmaComponents.ItemDelegate {
18721872
width: ListView.view.width
1873+
required property string name
1874+
required property string value
18731875
contentItem: RowLayout {
18741876
spacing: Kirigami.Units.smallSpacing
18751877
PlasmaComponents.Label {
18761878
Layout.fillWidth: true
1877-
text: model.name
1879+
text: name
18781880
textFormat: Text.PlainText
18791881
elide: Text.ElideRight
18801882
}

0 commit comments

Comments
 (0)