Save the state of collapsed/expanded categories

Fixes Asana issue 36436828173802
This commit is contained in:
Arjen Hiemstra 2015-06-09 13:38:23 +02:00
parent 56454a9c7a
commit fc33b34060
2 changed files with 23 additions and 1 deletions

View file

@ -1,6 +1,13 @@
// Copyright (c) 2015 Ultimaker B.V.
// Cura is released under the terms of the AGPLv3 or higher.
import QtQuick 2.0
import QtQuick.Controls 1.2
import UM 1.0 as UM
UM.SettingView { }
UM.SettingView {
expandedCategories: Printer.expandedCategories;
onExpandedCategoriesChanged: Printer.setExpandedCategories(expandedCategories);
}