- PDF import tool: solved a bug in parsing the rectangle subpath (an extra point was added to the subpath creating nonexisting geometry)

- PDF import tool: finished layer rendering multithreading
This commit is contained in:
Marius Stanciu
2019-04-24 22:26:13 +03:00
parent c0716f22e5
commit b11c67d453
4 changed files with 150 additions and 116 deletions

View File

@@ -25,7 +25,7 @@ class WorkerStack(QtCore.QObject):
thread.started.connect(worker.run)
worker.task_completed.connect(self.on_task_completed)
thread.start()
thread.start(QtCore.QThread.LowPriority)
self.workers.append(worker)
self.threads.append(thread)