PySimpleGUI

Results 1145 comments of PySimpleGUI

By the way, I like that you did some using .pyw. I don't have any and your repo showed me that I have a bug in my Project Browser demo...

THIS was the game that I found... again! To get it to run today I needed to remove the size from this code: ```python frame2 = sg.Frame('', layout=layout2, background_color=G.background, border_width=5,...

> Not sure why it changed ? Thank you for identifying what changed! Here is what I wrote in the release notes about this change: > Changed Table click events...

If you click a row and hold the click down, then you'll see that tkinter removes all of the selected row highlights. When you release the button, then the rows...

This will fix it.... add the `select_mode` parameter to your Table element. ```python select_mode=sg.TABLE_SELECT_MODE_NONE, ``` Because you are doing your own highlighting, using a mode of `'none'` will keep tkinter...

In 5.0.4.14 I changed the docstring for the `Table` element. It is not required in order for the code that added: ```python select_mode=sg.TABLE_SELECT_MODE_NONE, ``` In PyCharm I was seeing a...

> I haven't noticed this is select_rows and not row_colors That's an interesting observation that I missed..... row colors could have been used perhaps instead of selected rows. Maybe? I've...

> I'm very grateful I can't express how much it means to see these words. Thank you so very much. I'm extremely grateful to have grateful users. Maybe it's not...

It indeed wasn't part of the Combo element.... let's give it a try and see if there's problems that come up. It's a little unusual that it would have been...

You're quite welcome! Thanks for opening an issue about it.