mirror of
https://github.com/cappuccino/cappuccino.git
synced 2026-08-25 13:07:02 +00:00
Fix for issue #799 (NSFont replaces LucidaGrande-Bold 13 with the theme font)
This commit is contained in:
committed by
Randall Luecke
parent
5b1ca8a7f9
commit
66f84ede6e
@@ -31,7 +31,7 @@
|
||||
fontName = [aCoder decodeObjectForKey:@"NSName"],
|
||||
size = [aCoder decodeDoubleForKey:@"NSSize"];
|
||||
|
||||
if ((fontName === "LucidaGrande" || fontName === "LucidaGrande-Bold") && size === 13)
|
||||
if (fontName === "LucidaGrande" && size === 13)
|
||||
{
|
||||
CPLog.debug("Removing default IB font: <"+fontName+", "+size+"> for theme default font.");
|
||||
return nil;
|
||||
|
||||
Reference in New Issue
Block a user