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
path: root/cura
diff options
context:
space:
mode:
authorGhostkeeper <rubend@tutanota.com>2016-10-31 14:41:29 +0300
committerGhostkeeper <rubend@tutanota.com>2016-10-31 14:41:29 +0300
commit9a8a5db06ef4f79a9335ed960831bb7770f04a73 (patch)
treeff92fcebd99b474aee36b75859ef0d34583ee1e9 /cura
parent8c25a91e029af914148fcbe3936c522e5486a395 (diff)
Fix documentation for getAllExtruderSettings
Didn't complete it previously. Oops. Contributes to issue CURA-2823.
Diffstat (limited to 'cura')
-rw-r--r--cura/Settings/ExtruderManager.py5
1 files changed, 4 insertions, 1 deletions
diff --git a/cura/Settings/ExtruderManager.py b/cura/Settings/ExtruderManager.py
index b127f6575d..0ade958f86 100644
--- a/cura/Settings/ExtruderManager.py
+++ b/cura/Settings/ExtruderManager.py
@@ -270,7 +270,10 @@ class ExtruderManager(QObject):
def getAllExtruderValues(self, setting_key):
return self.getAllExtruderSettings(setting_key, "value")
- ## Gets a
+ ## Gets a property of a setting for all extruders.
+ #
+ # \param setting_key The setting to get the property of.
+ # \param property The property to get.
def getAllExtruderSettings(self, setting_key, property):
global_container_stack = UM.Application.getInstance().getGlobalContainerStack()
if global_container_stack.getProperty("machine_extruder_count", "value") <= 1: