Remove whitespace

This commit is contained in:
Daniel Belcher 2019-03-23 17:07:20 -07:00
commit 80f8bb0200

View file

@ -207,7 +207,7 @@ void CalculationResult::UpdateTextState()
{ {
double widthDiff = abs(m_textBlock->ActualWidth - containerSize); double widthDiff = abs(m_textBlock->ActualWidth - containerSize);
double fontSizeChange = INCREMENTOFFSET; double fontSizeChange = INCREMENTOFFSET;
if (widthDiff > WIDTHCUTOFF) if (widthDiff > WIDTHCUTOFF)
{ {
fontSizeChange = min<double>(max<double>(floor(WIDTHTOFONTSCALAR * widthDiff) - WIDTHTOFONTOFFSET, INCREMENTOFFSET), MAXFONTINCREMENT); fontSizeChange = min<double>(max<double>(floor(WIDTHTOFONTSCALAR * widthDiff) - WIDTHTOFONTOFFSET, INCREMENTOFFSET), MAXFONTINCREMENT);