- fixed bug in Tool Subtract that did not allow subtracting Gerber objects

This commit is contained in:
Marius Stanciu
2019-11-20 00:12:34 +02:00
committed by Marius
parent 50abe2883d
commit 4c1fdd2e2d
3 changed files with 22 additions and 19 deletions

View File

@@ -7,7 +7,7 @@
# ########################################################## ##
from PyQt5 import QtCore
# import traceback
import traceback
class Worker(QtCore.QObject):
@@ -61,7 +61,7 @@ class Worker(QtCore.QObject):
task['fcn'](*task['params'])
except Exception as e:
self.app.thread_exception.emit(e)
# print(traceback.format_exc())
print(traceback.format_exc())
# raise e
finally:
self.task_completed.emit(self.name)