We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cf19ac2 commit 08035d9Copy full SHA for 08035d9
1 file changed
tools/Python/mcgui/mcgui.py
@@ -474,14 +474,7 @@ def vis_run(self, tool=''):
474
475
self.__emitter.status('Starting visualisation in background shell...')
476
self.__emitter.message(runstr, gui=False)
477
- if not os.name=='nt':
478
- # run simulation in a background thread
479
- self.__runthread = McRunQThread()
480
- self.__runthread.cmd = runstr
481
- self.__runthread.cwd = os.path.dirname(self.__instrFile)
482
- self.__runthread.start()
483
- else:
484
- subprocess.Popen(runstr, shell=True)
+ subprocess.Popen(runstr, shell=True)
485
486
def __runFinished(self, process_returncode):
487
self.__fireSimStateUpdate()
0 commit comments