Jason Yang
Jason Yang
In https://github.com/PySimpleGUI/PySimpleGUI/issues/5036#issuecomment-1000983599 > This failure symptom can also be found in other elements/widgets, like Checkbox, Radio.
You can change the settings by ```python import PySimpleGUI as sg sg.PySimpleGUI.DEFAULT_TOOLTIP_OFFSET = (0, -20) # Default offset (dx, dy) relative to the position when mouse enter the element ```...
Just find this issue when I work on a scroll window. Not sure how the source code of PySimpleGUI built for this function. Here, just provide some ideas, hope it...
I prefer to scroll scrollable element when mouse over it, and also scroll all child elements, but not scroll parent elements until element scrolled to top or bottom. Selection for...
Time passed and the version of PySimpleGUI is already upgraded from 4.18.0.18 to 4.59.0.2 now. Better to post your question on a new issue and fill up issue form to...
Debug code here not for user. ```python import PySimpleGUI as sg def find_children(root, spaces=0): name = str(root) index = name.rfind('.') print(' '*spaces + name[index:]) widgets = list(root.children.values()) spaces += 2...
Duplicate and same as issue #5196, and not yet work now.
It looks like all the libraries using Pillow to handle the image. No idea to work it with only tkinter for - platform independent screenshot - image format processing
Here's the code to show how to control the scrollbar at this moment. ``` python import PySimpleGUI as sg font = ('Courier New', 16) text = '\n'.join(chr(i)*50 for i in...
Basically, set `no_titlabar=True` or `use_custom_titlebar=True` for a window causes it to be ignored by the window manager; among other things, this means that the window will not be reparented from...