mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-07-14 18:27:51 -06:00
Fix option_extruder case for per object settings panel
CURA-3814
This commit is contained in:
parent
eab7ce232a
commit
29c883d489
1 changed files with 9 additions and 0 deletions
|
@ -94,6 +94,8 @@ Item {
|
||||||
return settingComboBox
|
return settingComboBox
|
||||||
case "extruder":
|
case "extruder":
|
||||||
return settingExtruder
|
return settingExtruder
|
||||||
|
case "optional_extruder":
|
||||||
|
return settingOptionalExtruder
|
||||||
case "bool":
|
case "bool":
|
||||||
return settingCheckBox
|
return settingCheckBox
|
||||||
case "str":
|
case "str":
|
||||||
|
@ -342,6 +344,13 @@ Item {
|
||||||
Cura.SettingExtruder { }
|
Cura.SettingExtruder { }
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Component
|
||||||
|
{
|
||||||
|
id: settingOptionalExtruder
|
||||||
|
|
||||||
|
Cura.SettingOptionalExtruder { }
|
||||||
|
}
|
||||||
|
|
||||||
Component
|
Component
|
||||||
{
|
{
|
||||||
id: settingCheckBox;
|
id: settingCheckBox;
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue