diff options
Diffstat (limited to 'Source/SPTextAndLinkCell.m')
-rw-r--r-- | Source/SPTextAndLinkCell.m | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/Source/SPTextAndLinkCell.m b/Source/SPTextAndLinkCell.m index 90012fa9..244cd379 100644 --- a/Source/SPTextAndLinkCell.m +++ b/Source/SPTextAndLinkCell.m @@ -25,13 +25,13 @@ #import "SPTextAndLinkCell.h" - @implementation SPTextAndLinkCell /** * Provide a method to derive the link rect from a cell rect. */ -static inline NSRect SPTextLinkRectFromCellRect(NSRect inRect) { +static inline NSRect SPTextLinkRectFromCellRect(NSRect inRect) +{ return NSMakeRect(inRect.origin.x + inRect.size.width - 15, inRect.origin.y - 1, 12, inRect.size.height); } |