Heys Guys,
is there a way to set the height of the CTkScrollableFrame in the customtkinter library below 200 pixels?
Short example:
import customtkinter as ctk
root = ctk.CTk()
frame = ctk.CTkScrollableFrame(root, height=100)
frame.pack()
root.mainloop()
The command height=100
seems to have no effect. If I choose a value greater than 200 the result gets bigger but I can't find a way to make it smaller.
I also tried .grid
instead of .pack
but it didn't change anything.
Thanks in advance.