Skip to content

Commit

Permalink
Fixes #7639 - the redraw issue in ColumListView.
Browse files Browse the repository at this point in the history
Signed-off-by: Siarzhuk Zharski <zharik@gmx.li>
  • Loading branch information
janus2 authored and siarzhuk committed Dec 14, 2012
1 parent fbcad4e commit 9e265b3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/kits/interface/ColumnListView.cpp
Expand Up @@ -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());

Expand Down

0 comments on commit 9e265b3

Please sign in to comment.