diff --git a/arc-core/src/arc/scene/ui/ScrollPane.java b/arc-core/src/arc/scene/ui/ScrollPane.java index 50e8d317..435c72c6 100644 --- a/arc-core/src/arc/scene/ui/ScrollPane.java +++ b/arc-core/src/arc/scene/ui/ScrollPane.java @@ -752,7 +752,6 @@ protected float getMouseWheelY(){ public void setScrollXForce(float pixels){ visualAmountX = pixels; amountX = pixels; - scrollX = true; } /** Returns the x scroll position in pixels, where 0 is the left of the scroll pane. */ @@ -763,7 +762,6 @@ public float getScrollX(){ public void setScrollYForce(float pixels){ visualAmountY = pixels; amountY = pixels; - scrollY = true; } /** Returns the y scroll position in pixels, where 0 is the top of the scroll pane. */