25 lines
462 B
Objective-C
25 lines
462 B
Objective-C
//
|
|
// LinkLabel.m
|
|
// HotPocket (macOS)
|
|
//
|
|
// Created by Tomek Wójcik on 24/09/2025.
|
|
//
|
|
|
|
#import "LinkLabel.h"
|
|
|
|
@implementation LinkLabel
|
|
|
|
-(void)awakeFromNib {
|
|
[super awakeFromNib];
|
|
self.allowsEditingTextAttributes = YES;
|
|
self.textColor = [NSColor colorNamed:@"SecondaryColor"];
|
|
self.selectable = YES;
|
|
}
|
|
|
|
-(void)resetCursorRects {
|
|
[super resetCursorRects];
|
|
[self addCursorRect:self.bounds cursor:NSCursor.pointingHandCursor];
|
|
}
|
|
|
|
@end
|