Path Suggester: Make font fixed size
Some checks failed
Check if Cog buildable / Build Universal Cog.app (push) Has been cancelled

Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
Christopher Snowhill 2025-04-07 14:13:15 -07:00
parent 72608ecea0
commit 3f0c8d379a

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 = @"";