added drop models to buildplate as a right click option

Also shortcut: ctrl+B

CURA-10542
This commit is contained in:
Saumya Jain 2024-02-27 13:45:10 +01:00
parent 86bf94cc31
commit 1338a562ef
8 changed files with 18 additions and 43 deletions

View file

@ -1085,9 +1085,9 @@ class CuraApplication(QtApplication):
def getTextManager(self, *args) -> "TextManager":
return self._text_manager
@pyqtSlot(bool)
def getWorkplaceDropToBuildplate(self, drop_to_build_plate: bool) ->None:
return self._physics.setAppPerModelDropDown(drop_to_build_plate)
@pyqtSlot()
def setWorkplaceDropToBuildplate(self):
return self._physics.setAppPerModelDropDown()
def getCuraFormulaFunctions(self, *args) -> "CuraFormulaFunctions":
if self._cura_formula_functions is None: