1
0
mirror of https://github.com/EDCD/EDMarketConnector.git synced 2025-04-14 08:17:13 +03:00

Actually uncomment plugin_frame.columnconfigure(1, weight=1)

It had been commented to test that it made a difference.
This commit is contained in:
Athanasius 2023-01-02 14:05:07 +00:00
parent 61ad75d52a
commit 7bfeb5ec62
No known key found for this signature in database
GPG Key ID: 772697E181BB2767

View File

@ -580,7 +580,7 @@ class AppWindow(object):
plugin_frame.grid(
row=ui_row, columnspan=2, sticky=tk.NSEW
)
# plugin_frame.columnconfigure(1, weight=1)
plugin_frame.columnconfigure(1, weight=1)
if isinstance(appitem, tuple) and len(appitem) == 2:
ui_row = frame.grid_size()[1]
appitem[0].grid(row=ui_row, column=0, sticky=tk.W)