Clean up find results view positioning

The left and right borders are no longer visible, so the results are flush with the edges of the find window.
This commit is contained in:
Jacob Bandes-Storch
2012-08-21 20:49:48 -07:00
committed by Allan Odgaard
parent cd84a864d2
commit b24f2294fb

View File

@@ -10,6 +10,6 @@
{
[super setFrame:frame];
[header setFrame:NSMakeRect(0, frame.size.height - header.frame.size.height, frame.size.width, header.frame.size.height)];
[list setFrame:NSMakeRect(0, 0, frame.size.width, frame.size.height - header.frame.size.height+1)];
[list setFrame:NSMakeRect(-1, 0, frame.size.width+2, frame.size.height - header.frame.size.height+1)];
}
@end