Path Suggester: Make font fixed size
Some checks failed
Check if Cog buildable / Build Universal Cog.app (push) Has been cancelled
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:
parent
72608ecea0
commit
3f0c8d379a
1 changed files with 4 additions and 1 deletions
|
@ -145,7 +145,10 @@
|
||||||
|
|
||||||
PathItem *pi = [[pathsList arrangedObjects] objectAtIndex:row];
|
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;
|
NSButton *cellButton = nil;
|
||||||
NSString *cellText = @"";
|
NSString *cellText = @"";
|
||||||
|
|
Loading…
Reference in a new issue