Added new member variable for Table Element - table_frame - has the Frame Widget that the table is withihn

This commit is contained in:
PySimpleGUI 2019-11-15 14:30:42 -05:00
parent a4bd658ad9
commit e5dc2c45e3
1 changed files with 1 additions and 1 deletions

View File

@ -8666,7 +8666,7 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form):
elif element_type == ELEM_TYPE_TABLE:
element = element # type: Table
frame = tk.Frame(tk_row_frame)
element.table_frame = frame
height = element.NumRows
if element.Justification == 'left':
anchor = tk.W