Open madmadcat opened 3 years ago
Interesting. My understanding is that tkinter does not work properly on macOS. It would be good to know if, after commenting out those lines, whether the whole application runs on the mac.
Hey Pete, I can confirm that if the state parameter is removed, then the app works fine on MacOS.
Interesting. is it just this one place? or are there others? If you can identify all of the places, I'd be happy to make the change (maybe just wrap it in a try-catch, or do an os test prior to such lines.
Pete
@PetePupalaikis @madmadcat
Tested on MacOs Monterey ver. 12.3.1. I can also confirm that commenting out
if all(r is None for r in recentFileList): self.FileMenu.entryconfigure(1,state='disabled') else: self.FileMenu.entryconfigure(1,state='normal')
resolves the error.
**Error Report:**
When attempting to run the SignalIntegrity application, I encountered the following error and its the only one:
Traceback (most recent call last):
File "/path/to/SignalIntegrity/myenv/bin/SignalIntegrity", line 8, in
It works on Windows but my macOS.
heres are error messages
And I've tried to comment line 452 to line 455 in SingalIntegrityApp.py
the App start normally.