> I'm using :

> window = GtkWindow(WINDOW_TOPLEVEL)
> window.set_usize(800, 600)

> But, it would be better if I could use :

> window = GtkWindow(WINDOW_TOPLEVEL)
> window.set_usize(screen_widht, screen_height)

Change this to:

window = GtkWindow(WINDOW_TOPLEVEL)
window.set_usize(screen_widht(), screen_height())


Bye, Martin Grimme - http://www.pycage.de


_______________________________________________
pygtk mailing list   [EMAIL PROTECTED]
http://www.daa.com.au/mailman/listinfo/pygtk

Reply via email to