summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordemmm <anke62@gmail.com>2020-04-04 18:43:23 +0200
committerdemmm <anke62@gmail.com>2020-04-04 18:43:23 +0200
commite63160cbe9cc7e803610fc84525a763b77bc9708 (patch)
tree415a11511a0295684486c591857ee6ebb23da955
parentede561789a7fe5a1ddb1a874082507b4455211a1 (diff)
[localeq] Repeater with zonesModel crashes cala
probably due to dynamically loading items regionModel now lists, zonesModel only lists one delegate, but working on QML modules can now continue without crashing 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
}
}