diff options
author | athulappadan | 2016-03-17 11:41:50 +0530 |
---|---|---|
committer | athulappadan | 2016-03-17 11:41:50 +0530 |
commit | eba6e6ed7860256287a7490b90d2e00fa903cd41 (patch) | |
tree | 096720f51c6aff0015b4f92bf5fa7c5e41dfe5ce /src/projManagement | |
parent | 47def6faede05c5056d8a9f000f5ae5f9e3da7b9 (diff) | |
download | eSim-eba6e6ed7860256287a7490b90d2e00fa903cd41.tar.gz eSim-eba6e6ed7860256287a7490b90d2e00fa903cd41.tar.bz2 eSim-eba6e6ed7860256287a7490b90d2e00fa903cd41.zip |
Closes all external windows while closing a selected project
Diffstat (limited to 'src/projManagement')
-rw-r--r-- | src/projManagement/Worker.py | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/projManagement/Worker.py b/src/projManagement/Worker.py index 9721f4a7..6befca65 100644 --- a/src/projManagement/Worker.py +++ b/src/projManagement/Worker.py @@ -39,7 +39,8 @@ class WorkerThread(QtCore.QThread): procThread = Appconfig() proc = subprocess.Popen(command.split()) procThread.procThread_list.append(proc) + procThread.proc_dict[procThread.current_project['ProjectName']].append(proc.pid) -
\ No newline at end of file + |