Moving a window on the screen

Chris Angelico rosuav at gmail.com
Thu Nov 6 03:57:39 EST 2014


On Thu, Nov 6, 2014 at 7:32 PM, ast <nomail at invalid.com> wrote:
> The fen window goes from it's initial location to the last one
> but we dont see all the intermediate steps

You usually don't want to use time.sleep() in a GUI program. Try doing
the same thing, but with an event loop delay call instead; often, the
display won't update until you go back to the main loop.

ChrisA



More information about the Python-list mailing list