Path Suggester: Make font fixed size
Signed-off-by: Christopher Snowhill <kode54@gmail.com>
This commit is contained in:
parent
388e916f2a
commit
6061901218
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