This commit is contained in:
Kovid Goyal 2019-09-04 08:53:34 +05:30
parent 03ea489695
commit 9a1e55153b
No known key found for this signature in database
GPG Key ID: 06BC317B515ACE7C

View File

@ -208,7 +208,9 @@ class RenderManager(QObject):
self.opts = opts
self.workers = []
self.max_workers = detect_ncpus()
if not iswindows:
if iswindows:
self.original_signal_handlers = {}
else:
self.original_signal_handlers = setup_unix_signals(self)
def create_worker(self):