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:
authorRuben D <rubend@tutanota.com>2018-03-22 02:28:00 +0300
committerRuben D <rubend@tutanota.com>2018-03-22 02:28:00 +0300
commit37edce597681ee206bc1b45f86f7f616f784ecd3 (patch)
tree745110b7e23293083ed9140577b193e064d7bc82 /plugins/ModelChecker
parentab7f10ea52bb40e1c037f78717b5aa8b97a3b805 (diff)
Reuse message instances
Slightly more performant. And now if you click on the button again you won't get a spammy new message each time. Contributes to issue CURA-4557.
Diffstat (limited to 'plugins/ModelChecker')
-rw-r--r--plugins/ModelChecker/ModelChecker.py24
1 files changed, 13 insertions, 11 deletions
diff --git a/plugins/ModelChecker/ModelChecker.py b/plugins/ModelChecker/ModelChecker.py
index 8557fb8380..f5b5549575 100644
--- a/plugins/ModelChecker/ModelChecker.py
+++ b/plugins/ModelChecker/ModelChecker.py
@@ -31,6 +31,15 @@ class ModelChecker(QObject, Extension):
self._button_view = None
self._need_checks = False
+ self._happy_message = Message(catalog.i18nc(
+ "@info:status",
+ "The Model Checker did not detect any problems with your model / chosen materials combination."),
+ lifetime = 5,
+ title = catalog.i18nc("@info:title", "Model Checker"))
+ self._caution_message = Message("", #Message text gets set when the message gets shown, to display the models in question.
+ lifetime = 0,
+ title = catalog.i18nc("@info:title", "Model Checker Warning"))
+
Application.getInstance().initializationFinished.connect(self.bindSignals)
def bindSignals(self):
@@ -62,24 +71,17 @@ class ModelChecker(QObject, Extension):
## Display warning message
def showWarningMessage(self, warning_nodes):
- caution_message = Message(catalog.i18nc(
+ self._caution_message.setText(catalog.i18nc(
"@info:status",
"Some models may not be printed optimal due to object size and chosen material for models: {model_names}.\n"
"Tips that may be useful to improve the print quality:\n"
"1) Use rounded corners\n"
"2) Turn the fan off (only if the are no tiny details on the model)\n"
- "3) Use a different material").format(model_names = ", ".join([n.getName() for n in warning_nodes])),
- lifetime = 0,
- title = catalog.i18nc("@info:title", "Model Checker Warning"))
- caution_message.show()
+ "3) Use a different material").format(model_names = ", ".join([n.getName() for n in warning_nodes])))
+ self._caution_message.show()
def showHappyMessage(self):
- happy_message = Message(catalog.i18nc(
- "@info:status",
- "The Model Checker did not detect any problems with your model / chosen materials combination."),
- lifetime = 5,
- title = catalog.i18nc("@info:title", "Model Checker"))
- happy_message.show()
+ self._happy_message.show()
## Creates the view used by show popup. The view is saved because of the fairly aggressive garbage collection.
def _createView(self):