Jason Yang
Jason Yang
With option `no_button=True`, there's no attribute `_DebugWin.quit_button`. It looks that The call to `_DebugWin.Print` will be always failed if `_DebugWin` initiated with option `no_button=True`. If nothing wrong, it was updated...
I didn't spend time to check what happened. Actually, the code for `drag_submits=True` and `motion_events=True` are related. Not sure why the event for `-GRAPH-+MOVE` keep sent after call `window.start_thread` and...
Following code demo the debug ```python import PySimpleGUI as sg graph = sg.Graph((10,10), (0,0), (1,1), expand_x=True, expand_y=True, key='GRAPH') column = sg.Column(layout=[[graph]], expand_x=True, expand_y=True, key='COLUMN') tab = sg.Tab('Tab', layout=[[column]], expand_x=True, expand_y=True,...
 > the bottom left frame and all its nested elements have expand_x and expand_y set to True > The frame has failed to expand fully in y and the...
Maybe it is caused by options `expand_x` and `expand_y` in Tab element. ```python import PySimpleGUI as sg tab = sg.Tab('Tab 1', [[sg.T('tab1')]], expand_x=True, expand_y=True) layout = [[sg.TabGroup([[tab]], expand_x=True, expand_y=True)]] sg.Window('Window...
The link https://www.pysimplegui.org/en/latest/architecture/ got a 404 page. The problem is that I don't find the link https://www.pysimplegui.org/en/latest/architecture/ on https://www.pysimplegui.org/en/latest/, but only with https://pysimplegui.readthedocs.io/en/latest/architecture/ found. Can you help to point where...
It's much difficult for me to build it by pure PySimpleGUI code. If go it with new class inherited from `sg.Table`, some variables as argument or global variables not required....
By using `place` method, try to create background image for window. Here I set the location of window to out of screen, after everything done, then move it back to...
Here, I found another issue, `Window.move_to_center()` may not work well if window changed and GUI not updated. So `sg.Window().refresh()` required before `sg.Window().move_to_center()`, ```python location = sg.Window.get_screen_size() window = sg.Window('Demo background',...
IMO, there should be different when select a row/item or edit, maybe double clicks to edit ?