-
Notifications
You must be signed in to change notification settings - Fork 112
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
TK State Change Issue Causing Seg Fault #72
Comments
@BabyFnord, don't you also get the segmenation 11 error on your Mac? IIRC we get this, after we sign the x86_64 package, maybe that's our solution? |
Yes @gernophil, exactly
See Python_2024-06-21-100853_BigMac.txt for a detailed crash log, if that helps. Would be terrific to solve |
possible solution: #75 |
Thanks @jweezy24, looking forward to a commit @kaixxx @gernophil 😃 |
Hello,
On my Linux machine I kept encountering this error.
I am on python 3.12. Everything else works perfectly fine.
After some debugging, I found that the error was from these lines.
It turns out that the TK state was switching too quickly so it caused a segfault within the
self.log
function. I remedied the problem by changing the log function to the code below.The
disable_log_textbox
function ensures that the state changes do not conflict. Since adding this code I have had no issues with the program. I am not familiar with TK so I do not know if this is the best solution. Also, I do not know if this is only a problem on Linux as no other issues seem to be similar.The text was updated successfully, but these errors were encountered: