PySimpleGUI

Results 1145 comments of PySimpleGUI

If you're a Mac user that's really into testing and want to help out with this PyPI release, then you'll find the candidate release I've prepared for 4.60.2 here: https://github.com/PySimpleGUI/PySimpleGUI/tree/4.60.0-dot-releases

4.60.2 was posted to PyPI today. If you upgrade to it, or if you get the latest from GitHub, then you can remove the workaround from your code: ```python sg.set_options(alpha_channel=.99)...

Thanks much Bob! That cast to float I had never done with a version number before, and something made me uneasy when I saw it proposed NOW I know why....

I've just released to GitHub 4.60.3.66 in the main branch and in the dot release branch is the proposed 4.60.3 release. > Does this mean an understanding of the underlying...

## 🕑 - Tick Tock... the PyPI release of 4.60.3 for **MAC USERS** is paused waiting for verification from **a Mac user** that it works. I could use a hand...

In general, for events being missed, can we confirm if only on 8.6.12?

> I did the test on 8.6.9. Thank you very much

How intermittent are the dropped events? Or how frequent are they? Sounds like I've got a race condition somewhere maybe. Am I recalling correctly that only 1 bind per widget...

Using Jason's code, I have not been able to get a failure after maybe 50 to 100 clicks and drags using: * Windows 10 * Python 3.6.8 * tkinter 8.6.6...

I added 2 lines of code and a parm to the Window creation: ```python window = sg.Window('Title', layout, margins=(0, 0), finalize=True, right_click_menu=sg.MENU_RIGHT_CLICK_EDITME_VER_EXIT) ``` And in the event loop: ```python elif...