PySimpleGUI
PySimpleGUI
``` M""M dP d8 dP oo dP dP oo dP dP M M 88 88 88 88 88 88 88 M M d8888P .P .d8888b. 88d888b. 88d888b. dP 88 88...
> I realised after posting this that it could be a bit simpler as you don't need three threads. But I agree it still makes it a bit more complex...
@andrewmk I've not at all forgotten about this work! I'm tied up with trying to get the Udemy course done done done for Christmas. One of the lessons I recorded...
4.55.1.18 posted to GitHub with the fix for wraplen. Not sure if I got the height padding change right. This is the newest code: ```python if height > 1: button_style.configure(style_name,...
Oh, ok, I thought it was just a ttk problem. Sorry about that. I'll try again.
4.55.1.19 has the wraplen change for non-ttk buttons. ```python import PySimpleGUI as sg layout = [ [sg.Button(f'Size{s}', size=(3, None), font=('Courier New', s), use_ttk_buttons=False) for s in range(10, 30, 5)], ]...
"Modal windows" in tkinter are not truly modal... even worse, they had to be turned off entirely for Macs. Not ideal. It's a "simulated modal" using the best technique I...
It would be helpful to get an example of the kind of application and the kind of windows you expect to open and interact with. For example, is there an...
> Perhaps the solution is just for me to work around this. For the moment, this is indeed the best course. I AM VERY HAPPY that you've reported all this...
Re-reading this, there is some confusion about the connection between PySimpleGUI windows. There is **no** parent-child relationship between windows. Windows in PySimpleGUI are entirely independent from each other. If you...