- made available only for Linux and Windows (not OSX) the starting of the thread that checks if another instance of FlatCAM is already running at the launch of FLatCAM

This commit is contained in:
Marius Stanciu
2020-01-02 20:41:27 +02:00
committed by Marius
parent 6f5a775388
commit e0825bfce3
3 changed files with 9 additions and 7 deletions

View File

@@ -259,14 +259,15 @@ class App(QtCore.QObject):
# Setup the listening thread for another instance launching with args #####
# #########################################################################
# make sure the thread is stored by using a self. otherwise it's garbage collected
self.th = QtCore.QThread()
self.th.start(priority=QtCore.QThread.LowestPriority)
if sys.platform == 'win32' or sys.platform == 'linux':
# make sure the thread is stored by using a self. otherwise it's garbage collected
self.th = QtCore.QThread()
self.th.start(priority=QtCore.QThread.LowestPriority)
self.new_launch = ArgsThread()
self.new_launch.open_signal[list].connect(self.on_startup_args)
self.new_launch.moveToThread(self.th)
self.new_launch.start.emit()
self.new_launch = ArgsThread()
self.new_launch.open_signal[list].connect(self.on_startup_args)
self.new_launch.moveToThread(self.th)
self.new_launch.start.emit()
# ############################################################################
# # ################# OS-specific ############################################