jarvisteach / appJar

Simple Tkinter GUIs in Python
http://appJar.info
Other
615 stars 68 forks source link

Changing toolbar background color #577

Closed nwfistere closed 5 years ago

nwfistere commented 5 years ago

Hello,

I've been trying to change the background color of toolbars with no avail. I was wondering if it is even possible at the moment? Any help would be greatly appreciated!

jarvisteach commented 5 years ago

Definitely possible, although there is no direct function. Try: app.tb.config(bg='red')

Depending on your platform, you may have to change the bg on the buttons too...

 for child in app.tb.children.values():
     child.config(highlightbackground='red')
jarvisteach commented 5 years ago

This is now implemented in the next release