From 88408fc0ea2f0a5cada2031ba02f99c0a1e36cd8 Mon Sep 17 00:00:00 2001 From: Randall Luecke Date: Mon, 16 Aug 2010 15:10:29 -0500 Subject: [PATCH] Missed a couple lines in tableview custom drawing because of a merge conflict. --- AppKit/CPTableView.j | 3 +++ 1 file changed, 3 insertions(+) diff --git a/AppKit/CPTableView.j b/AppKit/CPTableView.j index 1b35d6c75..bc1bc6f2b 100644 --- a/AppKit/CPTableView.j +++ b/AppKit/CPTableView.j @@ -2472,6 +2472,9 @@ CPTableViewFirstColumnOnlyAutoresizingStyle = 5; [self drawBackgroundInClipRect:exposedRect]; [self drawGridInClipRect:exposedRect]; [self highlightSelectionInClipRect:exposedRect]; + + if (_implementsCustomDrawRow) + [self _drawRows:_exposedRows clipRect:exposedRect]; } - (void)drawBackgroundInClipRect:(CGRect)aRect