change creationflags

This commit is contained in:
iLLiCiTiT 2021-04-06 10:12:22 +02:00
parent bb2a82d8e3
commit 59a512db43

View file

@ -35,3 +35,7 @@ class LaunchWithWindowsShell(PreLaunchHook):
# Replace launch args with new one
self.launch_context.launch_args = args_string
# Change `creationflags` to CREATE_NEW_CONSOLE
self.launch_context.kwargs["creationflags"] = (
subprocess.CREATE_NEW_CONSOLE
)