Browse Source

Internal docs.
CURA-2823 Maximum build volume not met despite disabled settings

Simon Edwards 8 years ago
parent
commit
e74953c8bc
1 changed files with 3 additions and 2 deletions
  1. 3 2
      cura/Settings/ExtruderManager.py

+ 3 - 2
cura/Settings/ExtruderManager.py

@@ -272,8 +272,9 @@ class ExtruderManager(QObject):
 
 
     ##  Gets a property of a setting for all extruders.
     ##  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.
+    #   \param setting_key  \type{str} The setting to get the property of.
+    #   \param property  \type{str} The property to get.
+    #   \return \type{List} the list of results
     def getAllExtruderSettings(self, setting_key, property):
     def getAllExtruderSettings(self, setting_key, property):
         global_container_stack = UM.Application.getInstance().getGlobalContainerStack()
         global_container_stack = UM.Application.getInstance().getGlobalContainerStack()
         if global_container_stack.getProperty("machine_extruder_count", "value") <= 1:
         if global_container_stack.getProperty("machine_extruder_count", "value") <= 1: