fix to too many processes

This commit is contained in:
2026-03-30 14:12:35 -07:00
parent 74ce2eeb2e
commit 8655115cca
+3 -2
View File
@@ -1749,8 +1749,6 @@ class ParamSection(QWidget):
self.dependencies = [] self.dependencies = []
self.selected_path = None self.selected_path = None
# Load the mne data in a seperate process
self.file_executor = concurrent.futures.ProcessPoolExecutor(max_workers=1)
# Title label # Title label
title_label = QLabel(section_data["title"]) title_label = QLabel(section_data["title"])
@@ -4616,6 +4614,9 @@ class MainApplication(QMainWindow):
self.setWindowTitle(f"{APP_NAME.upper()}") self.setWindowTitle(f"{APP_NAME.upper()}")
self.setGeometry(100, 100, 1280, 720) self.setGeometry(100, 100, 1280, 720)
# Load the mne data in a seperate process
self.file_executor = concurrent.futures.ProcessPoolExecutor(max_workers=1)
self.about = None self.about = None
self.help = None self.help = None
self.optodes = None self.optodes = None