Commit 44b8e81c authored by Guido van Rossum's avatar Guido van Rossum

Change window title: prefix '* ' means playing.

parent 7ff90ef7
......@@ -23,7 +23,7 @@ def process(filename):
gl.foreground()
gl.prefsize(vin.width, vin.height)
win = gl.winopen(filename)
win = gl.winopen('* ' + filename)
vin.initcolormap()
gl.qdevice(ESCKEY)
......@@ -39,7 +39,7 @@ def process(filename):
t, data, chromdata = vin.getnextframe()
except EOFError:
running = 0
gl.wintitle('(done)')
gl.wintitle(filename)
if running:
dt = t + t0 - time.millitimer()
if dt > 0:
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment