Merge pull request #2198 from PySimpleGUI/Dev-latest

Added new member variable for Table Element - table_frame - has the F…
This commit is contained in:
PySimpleGUI 2019-11-15 14:31:03 -05:00 committed by GitHub
commit 26f2e98f3d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
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