* Partial revert of previous commit (dropped 'disown').
authorUrban Wallasch <urban.wallasch@freenet.de>
Sun, 9 May 2021 16:50:16 +0000 (18:50 +0200)
committerUrban Wallasch <urban.wallasch@freenet.de>
Sun, 9 May 2021 16:50:16 +0000 (18:50 +0200)
ffpreview.py

index 169b5ed645f3663449351dad31984b9b6f618c1b..9b30d7086db92e3fbc1dd8cc60b221365594c936 100755 (executable)
@@ -626,7 +626,7 @@ def play_video(filename, start='0', paused=False):
     cmd = cmd.replace('%t', '"' + start + '"')
     cmd = cmd.replace('%f', '"' + filename + '"')
     eprint(cmd)
-    Popen('exec ' + cmd + ' & disown', shell=True, start_new_session=True)
+    Popen('exec ' + cmd, shell=True, start_new_session=True)
 
 # check validity of existing index file
 def chk_idxfile():