From 6886bc5afb4c65385efa3d665cabe10c3153e479 Mon Sep 17 00:00:00 2001 From: Pieter de Bie Date: Wed, 27 Aug 2008 22:36:42 +0200 Subject: [PATCH] Remove cell size adjustment We added a rect adjustment in the graphing cell in order to draw outside the cell boundaries. This is no longer necessary --- PBGitRevisionCell.m | 5 ----- 1 file changed, 5 deletions(-) diff --git a/PBGitRevisionCell.m b/PBGitRevisionCell.m index e17013a..d9621ea 100644 --- a/PBGitRevisionCell.m +++ b/PBGitRevisionCell.m @@ -87,11 +87,6 @@ NSRect ownRect; NSDivideRect(rect, &ownRect, &rect, pathWidth, NSMinXEdge); - // Adjust by removing the border - ownRect.size.height += 2; - ownRect.origin.y -= 1; - ownRect.origin.x += 0; - for (PBLine* line in cellInfo.lines) { if (line.upper == 0) [self drawLineFromColumn: line.from toColumn: line.to inRect:ownRect offset: ownRect.size.height]; -- 2.11.4.GIT