From d288ed3b7894832063ea3e3d2a1ae87a405dbac8 Mon Sep 17 00:00:00 2001 From: Dummerle <44114474+Dummerle@users.noreply.github.com> Date: Sat, 18 Jun 2022 23:55:35 +0200 Subject: [PATCH] Immediately stop helper after launching an origin game to avoid zombie processes --- rare/game_launch_helper/__init__.py | 1 + 1 file changed, 1 insertion(+) diff --git a/rare/game_launch_helper/__init__.py b/rare/game_launch_helper/__init__.py index cea07df5..195634a8 100644 --- a/rare/game_launch_helper/__init__.py +++ b/rare/game_launch_helper/__init__.py @@ -128,6 +128,7 @@ class GameProcessHelper(QObject): if args.is_origin_game: QDesktopServices.openUrl(QUrl(args.executable)) + self.stop() # stop because it is no subprocess return if args.cwd: