diff --git a/AppKit/CPFont.j b/AppKit/CPFont.j index 91ca914e1..7b7df7874 100644 --- a/AppKit/CPFont.j +++ b/AppKit/CPFont.j @@ -353,10 +353,9 @@ var CPFontNameKey = @"CPFontNameKey", @end -// aName must normalized +// aName must be normalized var _CPFontCreateCSSString = function(aName, aSize, isBold, isItalic) { - // aName might be a string or an array of preprocessed names var properties = (isItalic ? "italic " : "") + (isBold ? "bold " : "") + aSize + "px "; return properties + _CPFontConcatNameWithFallback(aName);