You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
_hScrollOnBottom is doing the opposite of what's implied when set to True, putting the horizontal scrollbar on TOP of the scrollpane.
A quick fix would be to simply rename it to _hScrollOnTop.
The text was updated successfully, but these errors were encountered:
public ScrollPane SetScrollBarPositions(bool bottom, bool right)
{
_hScrollOnBottom = bottom;
_vScrollOnRight = right;
return this;
}
_hScrollOnBottom is doing the opposite of what's implied when set to True, putting the horizontal scrollbar on TOP of the scrollpane.
A quick fix would be to simply rename it to _hScrollOnTop.
The text was updated successfully, but these errors were encountered: