mirror of
https://github.com/kennethreitz-archive/gitx.git
synced 2026-06-05 23:40:18 +00:00
8c01a2964b
This avoids drawing path lines if the list is sorted or if there is a search, which would show the lines incorrectly.
23 lines
474 B
Objective-C
23 lines
474 B
Objective-C
//
|
|
// PBGitRevisionCell.h
|
|
// GitX
|
|
//
|
|
// Created by Pieter de Bie on 17-06-08.
|
|
// Copyright 2008 __MyCompanyName__. All rights reserved.
|
|
//
|
|
|
|
#import <Cocoa/Cocoa.h>
|
|
#import "PBGitGrapher.h"
|
|
#import "PBGraphCellInfo.h"
|
|
#import "PBGitHistoryController.h"
|
|
|
|
@interface PBGitRevisionCell : NSActionCell {
|
|
id objectValue;
|
|
PBGraphCellInfo *cellInfo;
|
|
NSTextFieldCell *textCell;
|
|
IBOutlet PBGitHistoryController *controller;
|
|
}
|
|
|
|
@property(retain) PBGitCommit* objectValue;
|
|
@end
|