Merge pull request #28 from faroukbmiled/refactored

min height fix
This commit is contained in:
Ryuk 2023-10-06 05:38:29 -07:00 committed by GitHub
commit 114268ce1d
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -909,7 +909,7 @@ class LibraryTab(ctk.CTkScrollableFrame):
_, _, x, y = get_window_size_from_registry()
top.geometry(f"{window_width}x{window_height}+{x}+{y}")
top.maxsize(window_width + 100, 450)
top.minsize(window_width - 5, window_height-100)
top.minsize(window_width - 5, 250)
top.resizable(True, True)
selected_id_list = []
cevent = Event()