Adding the preference drop to buildplate while opening Cura project

CURA-10542
This commit is contained in:
saumya.jain 2024-02-09 15:11:56 +01:00
parent e8bdca3dd9
commit 91a84674f0
3 changed files with 16 additions and 79 deletions

View file

@ -299,6 +299,20 @@ UM.Dialog
}
}
}
Row
{
id: dropToBuildPlate
width: parent.width
height: childrenRect.height
spacing: UM.Theme.getSize("default_margin").width
UM.CheckBox
{
id: rememberChoiceCheckBox
text: catalog.i18nc("@text:window", "Drop models to buildplate")
checked: UM.Preferences.getValue("physics/automatic_drop_down") == True
onCheckedChanged: UM.Preferences.setValue("physics/automatic_drop_down", checked)
}
}
Row
{