mirror of
https://git.mirrors.martin98.com/https://github.com/Ultimaker/Cura
synced 2025-08-13 01:29:08 +08:00
Fix two warnings on startup
CURA-1758
This commit is contained in:
parent
ac0de58ecb
commit
87abed39f0
@ -33,8 +33,6 @@ ScrollView
|
||||
exclude: ["machine_settings"]
|
||||
expanded: Printer.expandedCategories
|
||||
onExpandedChanged: Printer.setExpandedCategories(expanded)
|
||||
|
||||
filter: {}
|
||||
}
|
||||
|
||||
delegate: Loader
|
||||
@ -183,7 +181,7 @@ ScrollView
|
||||
//: Settings context menu action
|
||||
text: catalog.i18nc("@action:menu", "Copy value to all extruders")
|
||||
visible: machineExtruderCount.properties.value > 1
|
||||
enabled: contextMenu.provider.properties.settable_per_extruder != "False"
|
||||
enabled: contextMenu.provider != undefined && contextMenu.provider.properties.settable_per_extruder != "False"
|
||||
onTriggered: Cura.MachineManager.copyValueToExtruders(contextMenu.key)
|
||||
}
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user