Further isolate program window from TagStudio
This commit is contained in:
parent
2d558efde7
commit
4a9c4de56a
1 changed files with 1 additions and 1 deletions
|
|
@ -76,7 +76,7 @@ def open_file(path: str, file_manager: bool = False):
|
|||
command_name = "start"
|
||||
# first parameter is for title, NOT filepath
|
||||
command_args = ["", normpath]
|
||||
subprocess.Popen([command_name] + command_args, shell=True, close_fds=True, creationflags=subprocess.DETACHED_PROCESS)
|
||||
subprocess.Popen([command_name] + command_args, shell=True, close_fds=True, creationflags=subprocess.DETACHED_PROCESS | subprocess.CREATE_NEW_PROCESS_GROUP | subprocess.CREATE_BREAKAWAY_FROM_JOB)
|
||||
else:
|
||||
if sys.platform == "darwin":
|
||||
command_name = "open"
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue