diff --git a/MacPass/MPTableView.m b/MacPass/MPTableView.m index 5270947f..bf3d0cfa 100644 --- a/MacPass/MPTableView.m +++ b/MacPass/MPTableView.m @@ -11,7 +11,12 @@ @implementation MPTableView - (void)drawBackgroundInClipRect:(NSRect)clipRect { + /* + We need to clear the outer areas + as calling super will not do that for us + */ + [[NSColor whiteColor] set]; + NSRectFill(clipRect); [super drawBackgroundInClipRect:clipRect]; } - @end