Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 2 additions & 1 deletion runmanager/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -3483,7 +3483,8 @@ def send_to_runviewer(self, run_file):
# Runviewer not running, start it:
if os.name == 'nt':
creationflags = 0x00000008 # DETACHED_PROCESS from the win32 API
subprocess.Popen([sys.executable, '-m', 'runviewer'],
scripts_dir = desktop_app.environment.get_scripts_dir('runviewer')
subprocess.Popen([str(scripts_dir / 'runviewer-gui')],
creationflags=creationflags, stdout=None, stderr=None,
close_fds=True)
else:
Expand Down