Merge branch 'main' into CURA-11561_mockup_pap

This commit is contained in:
Saumya Jain 2024-02-16 11:47:32 +01:00 committed by GitHub
commit 80d7536763
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
178 changed files with 1253 additions and 434 deletions

View file

@ -351,6 +351,25 @@ UM.Dialog
}
}
Row
{
id: dropToBuildPlate
width: parent.width
height: childrenRect.height
spacing: UM.Theme.getSize("default_margin").width
UM.CheckBox
{
id: checkDropModels
text: catalog.i18nc("@text:window", "Drop models to buildplate")
checked: UM.Preferences.getValue("physics/automatic_drop_down")
onCheckedChanged: manager.setDropToBuildPlateForModel(checked)
}
function reloadValue()
{
checkDropModels.checked = UM.Preferences.getValue("physics/automatic_drop_down")
}
}
Row
{
id: clearBuildPlateWarning
@ -473,6 +492,7 @@ UM.Dialog
materialSection.reloadValues()
profileSection.reloadValues()
printerSection.reloadValues()
dropToBuildPlate.reloadValue()
}
}
}