Fixed scrollbar not scrolling correctly when clicked with mouse when grid tabs are visible, fixes #1449
This commit is contained in:
@@ -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));
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user