Revert "BColumnListView: Don't invalidate if the row is below the visible rect."

This reverts commit 07f87734c5.

Not needed after the previous commit.
This commit is contained in:
Augustin Cavalier
2025-08-05 13:33:02 -04:00
parent 1486d57908
commit 1483db6e71
-2
View File
@@ -4379,10 +4379,8 @@ OutlineView::ExpandOrCollapse(BRow* parentRow, bool expand)
FindRect(fFocusRow, &fFocusRowRect); FindRect(fFocusRow, &fFocusRowRect);
} }
if (parentRect.top < fVisibleRect.bottom) {
Invalidate(BRect(0, parentRect.top, fVisibleRect.right, Invalidate(BRect(0, parentRect.top, fVisibleRect.right,
fVisibleRect.bottom)); fVisibleRect.bottom));
}
FixScrollBar(false); FixScrollBar(false);
} }
} }