From 9a0c5df74427fee8a9788fbb20165b03cf389906 Mon Sep 17 00:00:00 2001 From: Berthold Stoeger Date: Sun, 10 Jan 2021 18:00:19 +0100 Subject: statistics/mobile: set currentIndex of QML combo boxes Use Q_PROPERTYs of the StatsManager to correctly set the current index of comboboxes after a state changed. Signed-off-by: Berthold Stoeger --- mobile-widgets/qml/StatisticsPage.qml | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'mobile-widgets/qml') diff --git a/mobile-widgets/qml/StatisticsPage.qml b/mobile-widgets/qml/StatisticsPage.qml index 4119c653a..7c5b498ca 100644 --- a/mobile-widgets/qml/StatisticsPage.qml +++ b/mobile-widgets/qml/StatisticsPage.qml @@ -37,6 +37,7 @@ Kirigami.Page { TemplateComboBox { id: var1 model: statsManager.var1List + currentIndex: statsManager.var1Index; Layout.fillWidth: false onCurrentIndexChanged: { statsManager.var1Changed(currentIndex) @@ -54,6 +55,7 @@ Kirigami.Page { TemplateComboBox { id: var1Binner model: statsManager.binner1List + currentIndex: statsManager.binner1Index; Layout.fillWidth: false onCurrentIndexChanged: { statsManager.var1BinnerChanged(currentIndex) @@ -71,6 +73,7 @@ Kirigami.Page { TemplateComboBox { id: var2 model: statsManager.var2List + currentIndex: statsManager.var2Index; Layout.fillWidth: false onCurrentIndexChanged: { statsManager.var2Changed(currentIndex) @@ -88,6 +91,7 @@ Kirigami.Page { TemplateComboBox { id: var2Binner model: statsManager.binner2List + currentIndex: statsManager.binner2Index; Layout.fillWidth: false onCurrentIndexChanged: { statsManager.var2BinnerChanged(currentIndex) -- cgit v1.2.3-70-g09d2