summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAdriaan de Groot <groot@kde.org>2020-04-04 21:51:53 +0200
committerGitHub <noreply@github.com>2020-04-04 21:51:53 +0200
commitd55a5bde9831c4ef2190f0d1c8e40804420d533d (patch)
tree415a11511a0295684486c591857ee6ebb23da955
parentede561789a7fe5a1ddb1a874082507b4455211a1 (diff)
parente63160cbe9cc7e803610fc84525a763b77bc9708 (diff)
Merge pull request #1368 from demmm/master
[localeq] Repeater with zonesModel crashes cala
-rw-r--r--src/modules/localeq/localeq.qml4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/modules/localeq/localeq.qml b/src/modules/localeq/localeq.qml
index 534c8952c..0e00d1b1b 100644
--- a/src/modules/localeq/localeq.qml
+++ b/src/modules/localeq/localeq.qml
@@ -27,9 +27,9 @@ RowLayout
Layout.fillWidth: true
ColumnLayout {
id: zones
- Repeater {
+ ListView {
model: config.zonesModel
- Text {
+ delegate: Text {
text: label
}
}