remove useless if

26-encoding-issues-in-client-beta-after-core4-merge
bensaine 3 years ago
parent 7300f2b079
commit 490d263f42

@ -3120,8 +3120,6 @@ namespace NLGUI
TextContext->setEmbolden (_Embolden); TextContext->setEmbolden (_Embolden);
TextContext->setOblique (_Oblique); TextContext->setOblique (_Oblique);
#if 1
UTextContext::CStringInfo si = TextContext->getStringInfo("XO"); UTextContext::CStringInfo si = TextContext->getStringInfo("XO");
float xoHeight = si.StringHeight; float xoHeight = si.StringHeight;
@ -3160,36 +3158,6 @@ namespace NLGUI
// if not set to "_", breaks item help window // if not set to "_", breaks item help window
si = TextContext->getStringInfo("_"); si = TextContext->getStringInfo("_");
_TabWidth = si.StringWidth; _TabWidth = si.StringWidth;
#else
// Letter size
UTextContext::CStringInfo si = TextContext->getStringInfo(_FontSizingChars);
// font generator changes unknown glyphs to dot '.'. use fallback if it looks odd
if (_FontSize > (si.StringHeight + si.StringLine))
{
si = TextContext->getStringInfo(_FontSizingFallback);
}
// add a padding of 1 pixel else the top will be truncated
_FontHeight = si.StringHeight + 1;
_FontLegHeight = si.StringLine;
// Space width
si = TextContext->getStringInfo(" ");
_SpaceWidth = si.StringWidth;
// Font Width
si = TextContext->getStringInfo("_");
_FontWidth = si.StringWidth;
// Tab Width (used for {Txx})
// if not set to "_", breaks item help window
si = TextContext->getStringInfo("_");
_TabWidth = si.StringWidth;
#endif
} }

Loading…
Cancel
Save