Fix for filling problem. Was expading to fill entire row.

This commit is contained in:
MikeTheWatchGuy 2018-10-29 14:13:49 -04:00
parent d0c7b9db30
commit e21bc07691
1 changed files with 1 additions and 1 deletions

View File

@ -4500,7 +4500,7 @@ def PackFormIntoFrame(form, containing_frame, toplevel_form):
scrollbar.config(command=treeview.yview)
treeview.configure(yscrollcommand=scrollbar.set)
element.TKTreeview.pack(side=tk.LEFT, expand=True, padx=0, pady=0, fill='both')
frame.pack(side=tk.LEFT, expand=True, padx=0, pady=0, fill='both')
frame.pack(side=tk.LEFT, expand=True, padx=0, pady=0)
treeview.bind("<<TreeviewSelect>>", element.treeview_selected)
if element.Tooltip is not None: # tooltip
element.TooltipObject = ToolTip(element.TKTreeview, text=element.Tooltip,