mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-08-06 13:34:01 -06:00
Add machine_heated_build_volume.
See also the engine. part of CURA-6717
This commit is contained in:
parent
445fb59c12
commit
f947269cf8
3 changed files with 24 additions and 1 deletions
|
@ -142,6 +142,18 @@ Item
|
|||
forceUpdateOnChangeFunction: forceUpdateFunction
|
||||
}
|
||||
|
||||
Cura.SimpleCheckBox // "Heated build volume"
|
||||
{
|
||||
id: heatedVolumeCheckBox
|
||||
containerStackId: machineStackId
|
||||
settingKey: "machine_heated_build_volume"
|
||||
settingStoreIndex: propertyStoreIndex
|
||||
labelText: catalog.i18nc("@label", "Heated build volume")
|
||||
labelFont: base.labelFont
|
||||
labelWidth: base.labelWidth
|
||||
forceUpdateOnChangeFunction: forceUpdateFunction
|
||||
}
|
||||
|
||||
Cura.ComboBoxWithOptions // "G-code flavor"
|
||||
{
|
||||
id: gcodeFlavorComboBox
|
||||
|
|
|
@ -204,6 +204,16 @@
|
|||
"settable_per_extruder": false,
|
||||
"settable_per_meshgroup": false
|
||||
},
|
||||
"machine_heated_build_volume":
|
||||
{
|
||||
"label": "Has Build Volume Temperature Stabilization",
|
||||
"description": "Whether the machine is able to stabilize the build volume temperature.",
|
||||
"default_value": false,
|
||||
"type": "bool",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false,
|
||||
"settable_per_meshgroup": false
|
||||
},
|
||||
"machine_center_is_zero":
|
||||
{
|
||||
"label": "Is Center Origin",
|
||||
|
@ -2103,7 +2113,7 @@
|
|||
"minimum_value": "-273.15",
|
||||
"minimum_value_warning": "0",
|
||||
"maximum_value_warning": "285",
|
||||
"enabled": true,
|
||||
"enabled": "machine_heated_build_volume",
|
||||
"settable_per_mesh": false,
|
||||
"settable_per_extruder": false
|
||||
},
|
||||
|
|
|
@ -44,6 +44,7 @@
|
|||
"machine_depth": { "default_value": 240 },
|
||||
"machine_height": { "default_value": 300 },
|
||||
"machine_heated_bed": { "default_value": true },
|
||||
"machine_heated_build_volume": { "default_value": true },
|
||||
"machine_nozzle_heat_up_speed": { "default_value": 1.4 },
|
||||
"machine_nozzle_cool_down_speed": { "default_value": 0.8 },
|
||||
"machine_head_with_fans_polygon":
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue