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
// may have brought in the last child of the list that is skinnier
// than the fading edge, thereby leaving space at the end. need
// to shift back
if ( last.getBottom() < listRight ) {
offsetChildrenLeftAndRight( listRight - last.getRight() );
}
I think it should be "if ( last.getRight() < listRight )"
The text was updated successfully, but these errors were encountered:
// may have brought in the last child of the list that is skinnier
// than the fading edge, thereby leaving space at the end. need
// to shift back
if ( last.getBottom() < listRight ) {
offsetChildrenLeftAndRight( listRight - last.getRight() );
}
I think it should be "if ( last.getRight() < listRight )"
The text was updated successfully, but these errors were encountered: