> 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
- [pygtk] How to get screen width and height Andre Luis Lopes
- Re: [pygtk] How to get screen width and height Eduardo Ferro
- Re: [pygtk] How to get screen width and height James Henstridge
- Martin Grimme
