зеркало из https://github.com/mozilla/gecko-dev.git
Handle the minimum font size being changed to 0 correctly. Bug 327054, r+sr=roc
This commit is contained in:
Родитель
c0fca2db20
Коммит
3c2930f20a
|
@ -347,13 +347,11 @@ nsPresContext::GetFontPreferences()
|
|||
pref.Append(langGroup);
|
||||
|
||||
PRInt32 size = nsContentUtils::GetIntPref(pref.get());
|
||||
if (size > 0) {
|
||||
if (unit == eUnit_px) {
|
||||
mMinimumFontSize = NSFloatPixelsToTwips((float)size, p2t);
|
||||
}
|
||||
else if (unit == eUnit_pt) {
|
||||
mMinimumFontSize = NSIntPointsToTwips(size);
|
||||
}
|
||||
if (unit == eUnit_px) {
|
||||
mMinimumFontSize = NSFloatPixelsToTwips((float)size, p2t);
|
||||
}
|
||||
else if (unit == eUnit_pt) {
|
||||
mMinimumFontSize = NSIntPointsToTwips(size);
|
||||
}
|
||||
|
||||
// get attributes specific to each generic font
|
||||
|
|
Загрузка…
Ссылка в новой задаче