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:
authorNino van Hooff <ninovanhooff@gmail.com>2020-05-08 17:20:55 +0300
committerNino van Hooff <ninovanhooff@gmail.com>2020-05-08 17:20:55 +0300
commit553b09b6cf35568e1ee791cc4c2bab8026872ae7 (patch)
treea9ba66c5d1f67203a629bc8e3f9f30da8fdecc6d /plugins/ModelChecker
parent40327c42593e943ce91a2459eb331933cd376dbd (diff)
Convert doxygen to rst for GcodeWriter, LegacyProfileReader,
MachineSettingsAction, ModelChecker
Diffstat (limited to 'plugins/ModelChecker')
-rw-r--r--plugins/ModelChecker/ModelChecker.py18
1 files changed, 12 insertions, 6 deletions
diff --git a/plugins/ModelChecker/ModelChecker.py b/plugins/ModelChecker/ModelChecker.py
index 057ee14945..138d84cc86 100644
--- a/plugins/ModelChecker/ModelChecker.py
+++ b/plugins/ModelChecker/ModelChecker.py
@@ -18,8 +18,8 @@ catalog = i18nCatalog("cura")
class ModelChecker(QObject, Extension):
- ## Signal that gets emitted when anything changed that we need to check.
onChanged = pyqtSignal()
+ """Signal that gets emitted when anything changed that we need to check."""
def __init__(self):
super().__init__()
@@ -47,11 +47,13 @@ class ModelChecker(QObject, Extension):
if not isinstance(args[0], Camera):
self._change_timer.start()
- ## Called when plug-ins are initialized.
- #
- # This makes sure that we listen to changes of the material and that the
- # button is created that indicates warnings with the current set-up.
def _pluginsInitialized(self):
+ """Called when plug-ins are initialized.
+
+ This makes sure that we listen to changes of the material and that the
+ button is created that indicates warnings with the current set-up.
+ """
+
Application.getInstance().getMachineManager().rootMaterialChanged.connect(self.onChanged)
self._createView()
@@ -106,8 +108,12 @@ class ModelChecker(QObject, Extension):
if node.callDecoration("isSliceable"):
yield node
- ## Creates the view used by show popup. The view is saved because of the fairly aggressive garbage collection.
def _createView(self):
+ """Creates the view used by show popup.
+
+ The view is saved because of the fairly aggressive garbage collection.
+ """
+
Logger.log("d", "Creating model checker view.")
# Create the plugin dialog component