I am writing a Perl-Tk application, and need to handle the resizing of Tk::Canvas object. I know I can do that with a binding to the `Configure' event, but that will not do for my problem, because the contents of the canvas takes quite a lot of time to redraw.
Therefore, what I would like to do is to wait for the user to finish his resizing ( that is when Button-1 is released ) and then redraw everything.
I have not managed to do that, using bindings to `Configure' and `ButtonRelease-1'.