mirror of
https://github.com/Ultimaker/Cura.git
synced 2025-11-02 20:52:20 -07:00
Fix deprecation decorator breaking the getExtruder function
This commit is contained in:
parent
d48b173118
commit
a7d419f497
1 changed files with 2 additions and 1 deletions
|
|
@ -986,8 +986,9 @@ class MachineManager(QObject):
|
||||||
self._application.globalContainerStackChanged.emit()
|
self._application.globalContainerStackChanged.emit()
|
||||||
self.forceUpdateAllSettings()
|
self.forceUpdateAllSettings()
|
||||||
|
|
||||||
|
# Note that this function is deprecated, but the decorators for this don't play well together!
|
||||||
|
# @deprecated("use Cura.MachineManager.activeMachine.extruders instead", "4.2")
|
||||||
@pyqtSlot(int, result = QObject)
|
@pyqtSlot(int, result = QObject)
|
||||||
@deprecated("use Cura.MachineManager.activeMachine.extruders instead", "4.2")
|
|
||||||
def getExtruder(self, position: int) -> Optional[ExtruderStack]:
|
def getExtruder(self, position: int) -> Optional[ExtruderStack]:
|
||||||
if self._global_container_stack:
|
if self._global_container_stack:
|
||||||
return self._global_container_stack.extruders.get(str(position))
|
return self._global_container_stack.extruders.get(str(position))
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue