Fix #2163 bug where launching viewing apps could freeze Blender

This commit is contained in:
Dion Moult
2022-04-26 09:53:32 +10:00
parent 8aff4badf7
commit 07d2cc62c1
2 changed files with 2 additions and 2 deletions
@@ -53,7 +53,7 @@ def open_with_user_command(user_command, path):
if user_command:
commands = eval(user_command)
for command in commands:
subprocess.run(command)
subprocess.Popen(command)
else:
webbrowser.open("file://" + path)
+1 -1
View File
@@ -329,7 +329,7 @@ class Drawing(blenderbim.core.tool.Drawing):
if user_command:
commands = eval(user_command)
for command in commands:
subprocess.run(command)
subprocess.Popen(command)
else:
webbrowser.open("file://" + path)