Open GoogleCodeExporter opened 8 years ago
I think the line in the paintValueTrack method of SliderTrackPainter class:
double percentFilled = slider.getValue() / trackLength;
should be:
double percentFilled = (slider.getValue()-slider.getMinimum()) / trackLength;
I haven't tested it, but I think it may solve the problem.
Original comment by bw800...@gmail.com
on 11 Nov 2014 at 4:03
Original issue reported on code.google.com by
bw800...@gmail.com
on 11 Nov 2014 at 3:37