Jason Yang
Jason Yang
Maybe you can try to change the `root` to master of the Table element. ```python table = window[key].Widget root = table.master ```
There're variables for settings of table editor, so it will not work for multiple tables and if table not shown. The programming logic may work wrong if you click on...
Code to show the bug, magic number for no color setting not handled before passed to tkinter. ```python import PySimpleGUI as sg sg.theme('Default') color = sg.theme_text_element_background_color() # '1234567890' print(color) layout...
No option `'undo'` for element `sg.Multiline` now. ### Tkinter code required here ``` python import PySimpleGUI as sg def redo(event, text): try: # if nothing to redo will cause "_tkinter.TclError:...
Maybe Enhancement for it, so let it kept open.
Following scripts, test10.py and test11.py, demo the output window for ten times, they got different results, but just with different `menu_def`, and the window generated by test10.py looks shown different...
Version of tcl/tk not provided. ``` python print(sg.tclversion_detailed) ``` I don't have platform as yours, so I cannot check your issue here. PySimpleGUI/Mike is taking a project break, maybe return...
Thanks for updated information.
You mean generic tkinter code also not work under Arch with Gnome ? or work ?
Normally, you can set it after window finalized. ``` python window = sg.Window('Title', layout, finalize=True) window.set_icon("icon.png") ```