| Index: chrome/browser/cocoa/bookmark_button_cell.mm
|
| ===================================================================
|
| --- chrome/browser/cocoa/bookmark_button_cell.mm (revision 20198)
|
| +++ chrome/browser/cocoa/bookmark_button_cell.mm (working copy)
|
| @@ -6,6 +6,13 @@
|
|
|
| @implementation BookmarkButtonCell
|
|
|
| +- (id)initTextCell:(NSString *)string {
|
| + if ((self = [super initTextCell:string])) {
|
| + [self setBordered:NO];
|
| + }
|
| + return self;
|
| +}
|
| +
|
| - (NSSize)cellSizeForBounds:(NSRect)aRect {
|
| NSSize size = [super cellSizeForBounds:aRect];
|
| size.width += 2;
|
|
|
| Property changes on: chrome/browser/cocoa/bookmark_button_cell.mm
|
| ___________________________________________________________________
|
| Name: svn:eol-style
|
| + LF
|
|
|
|
|