Skip to content

Commit

Permalink
List: fix horizontal autoscroll bounds check
Browse files Browse the repository at this point in the history
  • Loading branch information
joshtynjala committed Apr 2, 2024
1 parent f24f215 commit 597ca25
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -2146,7 +2146,7 @@ package feathers.controls.supportClasses
{
horizontalScrollPosition = this._owner.maxHorizontalScrollPosition;
}
else if(verticalScrollPosition < this._owner.minHorizontalScrollPosition)
else if(horizontalScrollPosition < this._owner.minHorizontalScrollPosition)
{
horizontalScrollPosition = this._owner.minHorizontalScrollPosition;
}
Expand Down

0 comments on commit 597ca25

Please sign in to comment.