Explorar el Código

- chagend the workers thread priority back to Normal

Marius Stanciu hace 6 años
padre
commit
dc6479210a
Se han modificado 2 ficheros con 2 adiciones y 1 borrados
  1. 1 1
      FlatCAMWorkerStack.py
  2. 1 0
      README.md

+ 1 - 1
FlatCAMWorkerStack.py

@@ -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)

+ 1 - 0
README.md

@@ -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