From cf7bc063f1bcb93ce64f6f3df89485c8b80af617 Mon Sep 17 00:00:00 2001 From: "c.lamboo" Date: Thu, 6 Apr 2023 21:52:50 +0200 Subject: [PATCH] Fix: Make "add printer" sections individually collapsable One variable was incorrectly named CURA-10484 --- resources/qml/WelcomePages/AddLocalPrinterScrollView.qml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml index a7a90df603..b2bdf43915 100644 --- a/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml +++ b/resources/qml/WelcomePages/AddLocalPrinterScrollView.qml @@ -19,7 +19,7 @@ Item // The currently selected machine item in the local machine list. property var currentItem: machineList.currentIndex >= 0 ? machineList.model.getItem(machineList.currentIndex) : null // The currently active (expanded) section/category, where section/category is the grouping of local machine items. - property var currentSection: new Set() + property var currentSections: new Set() // By default (when this list shows up) we always expand the "Ultimaker" section. property var preferredCategories: { "Ultimaker B.V.": -2,