Akascape / CTkListbox

A simple listbox for customtkinter (extenstion/add-on)
MIT License
132 stars 14 forks source link

I can't create CTkListbox with height less than 200 #14

Closed bladas closed 10 months ago

bladas commented 10 months ago

If you explicitly specify a height less than 200, it will still be created with a minimum value of 200

ist_box = CTkListbox('some parent', width=100, height=100) list_box.place(anchor=CENTER, relx=.80, rely=.50)

Akascape commented 10 months ago

@bladas That is actually a problem with the ctkscrollable frame widget, ctklistbox is built in top of that so it will show the same behaviour. Issue already registered: https://github.com/TomSchimansky/CustomTkinter/issues/1660

bladas commented 10 months ago

@Akascape Ok, thanks for the clarification