Fix for issue #799 (NSFont replaces LucidaGrande-Bold 13 with the theme font)

This commit is contained in:
Aparajita Fishman
2010-08-11 17:16:44 -05:00
committed by Randall Luecke
parent 5b1ca8a7f9
commit 66f84ede6e
+1 -1
View File
@@ -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;