From 96ac27d1c3d38a3323e85c267baf7262cfebaeb7 Mon Sep 17 00:00:00 2001 From: fieldOfView Date: Mon, 1 Aug 2016 10:50:04 +0200 Subject: [PATCH] Remove 3MF repair message CURA-1223 --- plugins/3MFReader/ThreeMFReader.py | 13 +++---------- 1 file changed, 3 insertions(+), 10 deletions(-) diff --git a/plugins/3MFReader/ThreeMFReader.py b/plugins/3MFReader/ThreeMFReader.py index 74db9fe946..ea3ca30118 100644 --- a/plugins/3MFReader/ThreeMFReader.py +++ b/plugins/3MFReader/ThreeMFReader.py @@ -11,11 +11,6 @@ from UM.Scene.GroupDecorator import GroupDecorator from UM.Math.Quaternion import Quaternion from UM.Job import Job -from UM.Message import Message -from UM.i18n import i18nCatalog -catalog = i18nCatalog("cura") - - import math import zipfile @@ -123,12 +118,10 @@ class ThreeMFReader(MeshReader): except Exception as e: Logger.log("e", "exception occured in 3mf reader: %s", e) - try: # Selftest - There might be more functions that should fail + try: # Selftest - There might be more functions that should fail boundingBox = result.getBoundingBox() boundingBox.isValid() except: - message = Message(catalog.i18nc("@info:status", "Your 3MF file seems to be broken. Please visit https://modelrepair.azurewebsites.net/ and try to repair your model!"), lifetime = 0) - message.show() return None - - return result + + return result