Cura/resources/qml/Menus/SettingVisibilityPresetsMenu.qml
Jaime van Kessel 6b9cc3f1c7 Use the correct function parameters when removing objects in menu
It turns out that the order of these functions matters. So when we created a
function with only one param, it would actually give it the index. Removing
with the index didn't work, so the object would still be there. The Qt objects
would already be deleted which caused segfaults

CURA-9222
2022-04-28 17:03:41 +02:00

56 lines
1.5 KiB
QML

// Copyright (c) 2021 Ultimaker B.V.
// Cura is released under the terms of the LGPLv3 or higher.
import QtQuick 2.10
import QtQuick.Controls 2.11
import QtQml.Models 2.14 as Models
import UM 1.2 as UM
import Cura 1.0 as Cura
Cura.Menu
{
ActionGroup { id: group }
id: menu
title: catalog.i18nc("@action:inmenu", "Visible Settings")
property QtObject settingVisibilityPresetsModel: CuraApplication.getSettingVisibilityPresetsModel()
signal collapseAllCategories()
Models.Instantiator
{
model: settingVisibilityPresetsModel.items
Cura.MenuItem
{
text: modelData.name
checkable: true
checked: modelData.presetId == settingVisibilityPresetsModel.activePreset
ActionGroup.group: group
onTriggered: settingVisibilityPresetsModel.setActivePreset(modelData.presetId)
}
onObjectAdded: function(index, object) { menu.insertItem(index, object) }
onObjectRemoved: function(index, object) { menu.removeItem(object)}
}
Cura.MenuSeparator {}
Cura.MenuItem
{
text: catalog.i18nc("@action:inmenu", "Collapse All Categories")
onTriggered:
{
collapseAllCategories();
}
}
Cura.MenuSeparator {}
Cura.MenuItem
{
text: catalog.i18nc("@action:inmenu", "Manage Setting Visibility...")
icon.name: "configure"
onTriggered: Cura.Actions.configureSettingVisibility.trigger()
}
}