Fixed scrollbar not scrolling correctly when clicked with mouse when grid tabs are visible, fixes #1449

This commit is contained in:
raoulvdberge
2017-09-06 15:09:46 +02:00
parent e95aa7d437
commit 8dce6fb0df
2 changed files with 2 additions and 1 deletions

View File

@@ -63,7 +63,7 @@ public class Scrollbar {
wasClicking = down;
if (isScrolling) {
setOffset((int) Math.floor((float) (mouseY - SCROLLER_HEIGHT) / (float) (height - SCROLLER_HEIGHT) * (float) maxOffset));
setOffset((int) Math.floor((float) (mouseY - y) / (float) (height - SCROLLER_HEIGHT) * (float) maxOffset));
}
}
}