custom window titles

I have a script that is generating many plots, and would like to create some
more informative window titles than "Figure 1" through "Figure 50". Is there
an easier way to do it than this, which is specific to backend_qt4?

fig = figure()
fig.canvas.window().setWindowTitle('Hi')

Thanks,

Darren

Please disregard. I hit the send button too quickly:

fig.canvas.set_window_title("D'oh!")

ยทยทยท

On Thursday 15 November 2007 03:27:28 pm Darren Dale wrote:

I have a script that is generating many plots, and would like to create
some more informative window titles than "Figure 1" through "Figure 50". Is
there an easier way to do it than this, which is specific to backend_qt4?

fig = figure()
fig.canvas.window().setWindowTitle('Hi')