CustomTkinter icon indicating copy to clipboard operation
CustomTkinter copied to clipboard

CTk Textbox

Open anuraj3303 opened this issue 2 years ago • 3 comments

['scrollbar_hover_color'] are not supported arguments. Look at the documentation for supported arguments. not able to set scrollbar colour or scrollbar hover colour also CTk Scroll bar cannot be used without specifying scrollbar colour

anuraj3303 avatar Dec 14 '22 08:12 anuraj3303

@anuraj3303 I guess it should be scrollbar_button_hover_color, mistake in the docs.

Akascape avatar Dec 14 '22 15:12 Akascape

https://github.com/TomSchimansky/CustomTkinter/wiki/CTkScrollbar

It's basically button_color and button_hover_color:

scrollbar = customtkinter.CTkScrollbar(root, button_color="red", button_hover_color="yellow")

duruburak avatar Dec 16 '22 21:12 duruburak

Actually I am talking about the inbuilt scrollbar of the CTkTextbox (https://github.com/TomSchimansky/CustomTkinter/wiki/CTkTextbox)

And for normal CTkScrollbar you will have to set the button color in order to work or else it will give an error

anuraj3303 avatar Dec 21 '22 17:12 anuraj3303

scrollbar_button_hover_color would be correct.

TomSchimansky avatar Jun 19 '23 12:06 TomSchimansky