How does one re-set the color of a ScrollBar with a custom BasicScrollBarUI ?
I know I can use this to set the color the first time:
protected void paintThumb(Graphics g, JComponent c, Rectangle thumbBounds)
However, that's called by the constructor, I can't call it again manually.
I need the color of the scrollbar to change when and action triggers.
How do I go about this?