Quellcode durchsuchen

- chagend the workers thread priority back to Normal

Marius Stanciu vor 6 Jahren
Ursprung
Commit
dc6479210a
2 geänderte Dateien mit 2 neuen und 1 gelöschten Zeilen
  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)
             thread.started.connect(worker.run)
             worker.task_completed.connect(self.on_task_completed)
             worker.task_completed.connect(self.on_task_completed)
 
 
-            thread.start(QtCore.QThread.HighPriority)
+            thread.start(QtCore.QThread.NormalPriority)
 
 
             self.workers.append(worker)
             self.workers.append(worker)
             self.threads.append(thread)
             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 for the generation of Isolation geometry
 - added progress and possibility of graceful exit in Panel Tool
 - added progress and possibility of graceful exit in Panel Tool
 - added graceful exit possibility when creating Isolation
 - added graceful exit possibility when creating Isolation
+- chagend the workers thread priority back to Normal
 
 
 9.09.2019
 9.09.2019