-
Notifications
You must be signed in to change notification settings - Fork 2
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
App freezes when running commands like python3 filename.py
#6
Comments
Actually, they're slightly different. #4 is about REPLs and how you can't give input whereas this is about if you run a command that takes a long time, the app freezes. |
Okay. I just mean the app freezes just like #4 |
Tkinter marks the window as not responding if the app does not respond for 5 seconds. Since the app currently freezes its process till the command finishes executing, if the command lasts 5+ secs the app freezes. |
Correct, but running any tkinter apps from the terminal will cause issues (an example). |
So, is there any way to solve this problem? |
Thats a great question. My current idea is this: Right now, the way the terminal works is to run the command on
This could theoretically prevent the app from crashing, open to new ideas though. |
wow, great! |
When I run a Python file that uses tkinter, re-focusing the app shows that its confused as there is the rotating wheel of death.
The text was updated successfully, but these errors were encountered: