Adjusted the subscript height for the font.

This commit is contained in:
dcone%netscape.com 2000-04-24 13:34:07 +00:00
Родитель 9176f7db24
Коммит 12ea47d8d4
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -2462,7 +2462,7 @@ HDC dc1 = NULL;
if (0 < ::GetOutlineTextMetrics(dc, sizeof(oMetrics), &oMetrics)) {
// mXHeight = NSToCoordRound(oMetrics.otmsXHeight * dev2app); XXX not really supported on windows
mXHeight = NSToCoordRound((float)metrics.tmAscent * dev2app * 0.50f); // 50% of ascent, best guess for true type
mXHeight = NSToCoordRound((float)metrics.tmAscent * dev2app * 0.56f); // 50% of ascent, best guess for true type
mSuperscriptOffset = NSToCoordRound(oMetrics.otmptSuperscriptOffset.y * dev2app);
mSubscriptOffset = NSToCoordRound(oMetrics.otmptSubscriptOffset.y * dev2app);