I replaced the image for tabbar scroll. Original:
Replaced them with the following lines in the init file:
;; Load a new tabbar arrow image
(setq tabbar-scroll-left-button-enabled-image-one '((:type png :file "~/tabbar-scroll-left.png" :ascent center)))
(setq tabbar-scroll-left-button
(cons (cons " <" tabbar-scroll-left-button-enabled-image-one)
(cons " =" nil)))
(setq tabbar-scroll-right-button-enabled-image-one '((:type png :file "~/tabbar-scroll-right.png" :ascent center)))
(setq tabbar-scroll-right-button
(cons (cons " >" tabbar-scroll-right-button-enabled-image-one)
(cons " =" nil)))
I replaced them with a colored picture, but they are only colored when there are multiple tabs.
With only one tab (both scroll pictures are greyed out):
With two tabs (Right scroll icon is showing as colored, which is desired when they are always colored):
The desired scenario is to have the two scroll image always colored. I investigated tabbar.el but did not have a clue where it defines behavior of graying out a colored picture. Can anybody help?