Skip to content

Commit

Permalink
Added fix for #1523
Browse files Browse the repository at this point in the history
  • Loading branch information
james-d committed Oct 8, 2023
1 parent 1cd3de9 commit a983846
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -411,7 +411,7 @@ private void positionHighThumb() {
double y = orientation ? lowThumb.getLayoutY() : (getSkinnable().getInsets().getTop() + trackLength) - trackLength * ((slider.getHighValue() - slider.getMin()) / (getMaxMinusMinNoZero()));
highThumb.setLayoutX(x);
highThumb.setLayoutY(y);
if (orientation) rangeEnd = x; else rangeStart = y + thumbWidth;
if (orientation) rangeEnd = x; else rangeStart = y + thumbHeight;
}

@Override protected void layoutChildren(final double x, final double y,
Expand Down

0 comments on commit a983846

Please sign in to comment.