From e63160cbe9cc7e803610fc84525a763b77bc9708 Mon Sep 17 00:00:00 2001 From: demmm Date: Sat, 4 Apr 2020 18:43:23 +0200 Subject: [PATCH] [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 --- src/modules/localeq/localeq.qml | 4 ++-- 1 file 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 } }