Turning off symbol ligatures can turn off required ligatures also in some fonts. Bug 462387, r+sr=roc

This commit is contained in:
Simon Montagu 2008-11-02 06:11:10 -08:00
parent d13a725406
commit 18abf89bcd

View File

@ -178,7 +178,6 @@ DisableUncommonLigatures(ATSUStyle aStyle)
kLigaturesType,
kLigaturesType,
kLigaturesType,
kLigaturesType,
kLigaturesType
};
static const ATSUFontFeatureType selectors[NS_ARRAY_LENGTH(types)] = {
@ -187,8 +186,7 @@ DisableUncommonLigatures(ATSUStyle aStyle)
kRebusPicturesOffSelector,
kDiphthongLigaturesOffSelector,
kSquaredLigaturesOffSelector,
kAbbrevSquaredLigaturesOffSelector,
kSymbolLigaturesOffSelector
kAbbrevSquaredLigaturesOffSelector
};
ATSUSetFontFeatures(aStyle, NS_ARRAY_LENGTH(types), types, selectors);
}