ScrollBar: make hoverTrack and hoverThumb fields protected to allow subclasses implement own painting (issue #103)

This commit is contained in:
Karl Tauber
2020-05-19 19:24:27 +02:00
parent f1c08e7769
commit 815e23b930

View File

@@ -73,8 +73,8 @@ public class FlatScrollBarUI
protected Color buttonDisabledArrowColor;
private MouseAdapter hoverListener;
private boolean hoverTrack;
private boolean hoverThumb;
protected boolean hoverTrack;
protected boolean hoverThumb;
public static ComponentUI createUI( JComponent c ) {
return new FlatScrollBarUI();