paskari 0 Newbie Poster

Hello, I originally posted this on another forum (http://python-forum.org/pythonforum/viewtopic.php?f=4&t=9568&sid=e93069443775540ac112e9cf6a3c1e8b) so I hope you don't mind the repost.

I developed a user interface with Glade, and used Gladex to compile the .glade file into a loadable .py file. The program works fine, but I'm having a hard time drawing anything in the drawing area

I can draw shapes as long as I call da.window.draw_line(...) from within the on_expose_event(...) function, but if I try to do this anywhere else, the shapes don't get drawn. Is there something I should call after all my draw functions? I've tried da.show() but it has no effect.

Thank You