Path Suggester: Make font fixed size

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
Christopher Snowhill 2025-04-07 14:13:15 -07:00
parent 388e916f2a
commit 6061901218

View file

@ -145,7 +145,10 @@
PathItem *pi = [[pathsList arrangedObjects] objectAtIndex:row];
float fontSize = [[[NSUserDefaultsController sharedUserDefaultsController] defaults] floatForKey:@"fontSize"];
CGFloat fontSize = 11.0;
if(@available(macOS 10.14, *)) {
fontSize = 13.0;
}
NSButton *cellButton = nil;
NSString *cellText = @"";