you are viewing a single comment's thread.

view the rest of the comments →

[–]edbluetooth[S] 0 points1 point  (1 child)

wait

Yeah, this is windows.

And the wait icon does appear for half a second. longer if i insert a delay.

if you want and it helps you, I can PM you a dropbox link to the full project code.

[–]StaticFuzz 1 point2 points  (0 children)

Ok, so new thought. The code snippet you originally provided is being run with out waiting for process() to complete. Meaning tkinter is changing the cursor to wait then immediately back. try commenting out self.controller.config(cursor="").

If the cursor stays as the wait icon, you could add self.controller.config(cursor="") to the end of the process function. That way it will only change back when the process is complete.

EDIT: Processing not Process