Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/Ultimaker/Cura.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
Diffstat (limited to 'cura/Settings/GlobalStack.py')
-rwxr-xr-xcura/Settings/GlobalStack.py10
1 files changed, 0 insertions, 10 deletions
diff --git a/cura/Settings/GlobalStack.py b/cura/Settings/GlobalStack.py
index 282034c0ee..d40ae08236 100755
--- a/cura/Settings/GlobalStack.py
+++ b/cura/Settings/GlobalStack.py
@@ -60,16 +60,6 @@ class GlobalStack(CuraContainerStack):
extrudersChanged = pyqtSignal()
configuredConnectionTypesChanged = pyqtSignal()
- @pyqtProperty("QVariantMap", notify = extrudersChanged)
- @deprecated("Please use extruderList instead.", "4.4")
- def extruders(self) -> Dict[str, "ExtruderStack"]:
- """Get the list of extruders of this stack.
-
- :return: The extruders registered with this stack.
- """
-
- return self._extruders
-
@pyqtProperty("QVariantList", notify = extrudersChanged)
def extruderList(self) -> List["ExtruderStack"]:
result_tuple_list = sorted(list(self._extruders.items()), key=lambda x: int(x[0]))