mirror of https://github.com/axmolengine/axmol.git
Update CCLabel.cpp
This commit is contained in:
parent
2da2cad6ad
commit
dde46fd5ee
|
@ -1346,7 +1346,7 @@ void Label::setBMFontSizeInternal(float fontSize)
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void Label::scaleFontSizeDown(float fontSize)
|
void Label::scaleFontSize(float fontSize)
|
||||||
{
|
{
|
||||||
bool shouldUpdateContent = true;
|
bool shouldUpdateContent = true;
|
||||||
if (_currentLabelType == LabelType::TTF)
|
if (_currentLabelType == LabelType::TTF)
|
||||||
|
@ -2608,7 +2608,7 @@ void Label::rescaleWithOriginalFontSize()
|
||||||
auto renderingFontSize = this->getRenderingFontSize();
|
auto renderingFontSize = this->getRenderingFontSize();
|
||||||
if (_originalFontSize - renderingFontSize >= 1)
|
if (_originalFontSize - renderingFontSize >= 1)
|
||||||
{
|
{
|
||||||
this->scaleFontSizeDown(_originalFontSize);
|
this->scaleFontSize(_originalFontSize);
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue