This commit is contained in:
Christoph Gohlke 2013-03-05 10:45:20 -08:00
commit 6ad2385d39

View File

@ -98,7 +98,8 @@ if sys.platform == "win32":
class WindowsViewer(Viewer):
format = "BMP"
def get_command(self, file, **options):
return "start /wait %s && del /f %s" % (file, file)
return ("start /wait %s && ping -n 2 127.0.0.1 >NUL "
"&& del /f %s" % (file, file))
register(WindowsViewer)