From b30f2d5cc3b772ebb0eb7ed3d04a79db7b57a94a Mon Sep 17 00:00:00 2001 From: Keith Edmunds Date: Thu, 16 Mar 2023 15:20:31 +0000 Subject: [PATCH] Fix play with mplayer --- app/playlists.py | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/playlists.py b/app/playlists.py index 74e50ea..f4a76d5 100644 --- a/app/playlists.py +++ b/app/playlists.py @@ -1421,10 +1421,10 @@ class PlaylistTab(QTableWidget): ) return - cmd_list = ['gmplayer', '-vc', 'null', '-vo', 'null', track_path] - thread = threading.Thread( - target=self._run_subprocess, args=(cmd_list,)) - thread.start() + cmd_list = ['gmplayer', '-vc', 'null', '-vo', 'null', track_path] + thread = threading.Thread( + target=self._run_subprocess, args=(cmd_list,)) + thread.start() def _open_in_audacity(self, row_number: int) -> None: """Open track in Audacity. Audacity must be already running"""