sephiroth74/HorizontalVariableListView

An error comparion in HListView.java's scrollListItemsBy

Opened this issue · 1 comments

// 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 )"

agree. I also found it.