From db765c5301cc7225ebf498be6465f74b85294153 Mon Sep 17 00:00:00 2001 From: Petr Kalis Date: Mon, 19 Aug 2024 18:24:32 +0200 Subject: [PATCH] Fix logic If ayon_console CREATE_NEW_CONSOLE, same as in AE, here wrong, most likely because some superfluous dev commit. --- client/ayon_photoshop/hooks/pre_launch_args.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/ayon_photoshop/hooks/pre_launch_args.py b/client/ayon_photoshop/hooks/pre_launch_args.py index ff60c2f..03eee99 100644 --- a/client/ayon_photoshop/hooks/pre_launch_args.py +++ b/client/ayon_photoshop/hooks/pre_launch_args.py @@ -27,7 +27,7 @@ def get_launch_kwargs(kwargs): if platform.system().lower() != "windows": return kwargs - if not is_using_ayon_console(): + if is_using_ayon_console(): kwargs.update({ "creationflags": subprocess.CREATE_NEW_CONSOLE })