Remove the horizontal spacing between the rows in the commit list tableview.

This is to prevent horizontal white lines from displaying in the graphs.
This commit is contained in:
Ciarán Walsh
2008-08-27 21:15:23 +01:00
parent bbeedd10ce
commit c1e701a379
3 changed files with 896 additions and 895 deletions
File diff suppressed because it is too large Load Diff
+1
View File
@@ -16,6 +16,7 @@
IBOutlet NSTreeController* treeController;
IBOutlet NSOutlineView* fileBrowser;
IBOutlet NSSearchField* searchField;
IBOutlet NSTableView* commitList;
int selectedTab;
+3
View File
@@ -34,6 +34,9 @@
self.selectedTab = [[NSUserDefaults standardUserDefaults] integerForKey:@"Repository Window Selected Tab Index"];;
[commitController addObserver:self forKeyPath:@"selection" options:(NSKeyValueObservingOptionNew,NSKeyValueObservingOptionOld) context:@"commitChange"];
[treeController addObserver:self forKeyPath:@"selection" options:0 context:@"treeChange"];
NSSize cellSpacing = [commitList intercellSpacing];
cellSpacing.height = 0;
[commitList setIntercellSpacing:cellSpacing];
}
- (void) updateKeys