Fixes #7639 - the redraw issue in ColumListView.

Signed-off-by: Siarzhuk Zharski <zharik@gmx.li>
This commit is contained in:
Janus 2012-12-14 20:46:19 +01:00 committed by Siarzhuk Zharski
parent fbcad4e5e5
commit 9e265b3329
1 changed files with 1 additions and 1 deletions

View File

@ -3259,7 +3259,7 @@ OutlineView::Draw(BRect invalidBounds)
tintedLine = !tintedLine;
float rowHeight = row->Height();
if (line > invalidBounds.top - rowHeight) {
if (line >= invalidBounds.top - rowHeight) {
bool isFirstColumn = true;
float fieldLeftEdge = MAX(kLeftMargin, fMasterView->LatchWidth());