- chagend the workers thread priority back to Normal

This commit is contained in:
Marius Stanciu 2019-09-10 15:16:51 +03:00
parent f658e05240
commit dc6479210a
2 changed files with 2 additions and 1 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(QtCore.QThread.HighPriority)
thread.start(QtCore.QThread.NormalPriority)
self.workers.append(worker)
self.threads.append(thread)

View File

@ -18,6 +18,7 @@ CAD program, and create G-Code for Isolation routing.
- added progress for the generation of Isolation geometry
- added progress and possibility of graceful exit in Panel Tool
- added graceful exit possibility when creating Isolation
- chagend the workers thread priority back to Normal
9.09.2019