diff --git a/PBCommitMessageView.m b/PBCommitMessageView.m
index ad18ed7..c9c8c43 100644
--- a/PBCommitMessageView.m
+++ b/PBCommitMessageView.m
@@ -13,9 +13,7 @@
- (void)drawRect:(NSRect)aRect
{
- NSColor *originalColor = [self backgroundColor];
- [originalColor set];
- NSRectFill(aRect);
+ [super drawRect:aRect];
// draw a vertical line after the given size (used as an indicator
// for the first line of the commit message)
@@ -33,10 +31,6 @@
line.size.height = aRect.size.height;
NSRectFill(line);
}
-
- [self setBackgroundColor:nil];
- [super drawRect:aRect];
- [self setBackgroundColor:originalColor];
}
@end
diff --git a/PBGitCommitView.xib b/PBGitCommitView.xib
index d25307b..42d061a 100644
--- a/PBGitCommitView.xib
+++ b/PBGitCommitView.xib
@@ -21,7 +21,7 @@