- made isolation threaded

This commit is contained in:
Marius Stanciu
2019-09-10 04:29:06 +03:00
committed by Marius
parent d5fd084a6f
commit c66c841d37
3 changed files with 45 additions and 28 deletions

View File

@@ -3537,7 +3537,7 @@ class App(QtCore.QObject):
# Check units and convert if necessary
# This condition CAN be true because initialize() can change obj.units
if self.options["units"].upper() != obj.units.upper():
self.inform.emit('[ERROR_NOTCL] %s: %s' %
self.inform.emit('%s: %s' %
(_("Converting units to "), self.options["units"]))
obj.convert_units(self.options["units"])
t3 = time.time()