PySimpleGUI
PySimpleGUI
The first one in your crash list should have been OK: ```python file_types=(('ALL files', '*'),) ``` This is one that's specifically checked just like *.*. Let me add the others...
OK! Give 4.0.60.23 a try please. It has the additional ways of specifying * Thank you again @macdeport for the help!
These are the values I'm testing against. ```python ("*", "*.*", "*.* *", "*.", '.*') ``` Sure, I'm open to suggestions.
4.60.0.24 adds the missing combination `* *.*`
I'll do a regex next if that doesn't cover all the situations :-)
I think this test will cover checking for the condition we're after... ```python all(ch in '* .' for ch in y) ```
In 4.0.60.25 I've added the more general purpose logic that should cover all combinations of using *
 Yeah! I do like simple.... it takes me a while to get there.... but I usually eventually arrive. Thank you for all the help. Couldn't have made it without...
I'll make the change to the popup_get_file today as well as remove the Mac control panel settings for this feature so that everyone has access on all Macs.
Just posted 4.60.0.28 which has 2 changes for the Mac 1. Removed the setting that controlled access to the filetypes parameter from the Mac System Settings 2. Added the same...