Merge pull request #5507 from mconst/master

Avoid race condition when displaying images with eog
This commit is contained in:
Andrew Murray 2021-05-25 22:36:39 +10:00 committed by GitHub
commit 10d8800ee7
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -207,7 +207,8 @@ class EogViewer(UnixViewer):
"""The GNOME Image Viewer ``eog`` command."""
def get_command_ex(self, file, **options):
command = executable = "eog"
executable = "eog"
command = "eog -n"
return command, executable