mirror of
https://github.com/python-pillow/Pillow.git
synced 2025-03-26 13:04:14 +03:00
Use title for display
This commit is contained in:
parent
862be7cbcd
commit
b3e690a270
|
@ -189,8 +189,10 @@ class UnixViewer(Viewer):
|
|||
class DisplayViewer(UnixViewer):
|
||||
"""The ImageMagick ``display`` command."""
|
||||
|
||||
def get_command_ex(self, file, **options):
|
||||
def get_command_ex(self, file, title=None, **options):
|
||||
command = executable = "display"
|
||||
if title:
|
||||
command += f" -name {quote(title)}"
|
||||
return command, executable
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue
Block a user