Salome HOME
Publishing the result of SurfOpt and Cleaner if the output file exists even if the...
[modules/smesh.git] / src / Tools / YamsPlug / monViewText.py
index fe3e665d8f786d054223f62060fdf378ae7b2973..cb140d87f4406e2f640361954bde8dfa2160bf5f 100644 (file)
@@ -109,8 +109,14 @@ class MonViewText(Ui_ViewExe, QDialog):
         if exit_code == 0 and not self.anErrorOccured:
             self.parent().enregistreResultat()
         elif not self.hasBeenCanceled:
-            QMessageBox.critical(self, 'Computation failed',
-                 'The computation has failed.<br>Please, check the log message.')
+            if os.path.exists(self.parent().fichierOut):
+                self.parent().enregistreResultat()
+                QMessageBox.critical(self, 'Computation ended in error',
+                  'A new mesh has been generated but with some errors.'+
+                  '<br>Please, check the log message.')
+            else:
+                QMessageBox.critical(self, 'Computation failed',
+                  'The computation has failed.<br>Please, check the log message.')
         pass
 
     def errorOccured(self):