1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Fixed a warning in the recent Label LookAndFeel changes

This commit is contained in:
ed 2018-09-04 14:29:52 +01:00
parent ff263ecded
commit a9eb179dc2

View file

@ -157,19 +157,19 @@ void Label::componentMovedOrResized (Component& component, bool /*wasMoved*/, bo
{
auto& lf = getLookAndFeel();
auto f = lf.getLabelFont (*this);
auto border = lf.getLabelBorderSize (*this);
auto borderSize = lf.getLabelBorderSize (*this);
if (leftOfOwnerComp)
{
auto width = jmin (roundToInt (f.getStringWidthFloat (textValue.toString()) + 0.5f)
+ border.getLeftAndRight(),
+ borderSize.getLeftAndRight(),
component.getX());
setBounds (component.getX() - width, component.getY(), width, component.getHeight());
}
else
{
auto height = border.getTopAndBottom() + 6 + roundToInt (f.getHeight() + 0.5f);
auto height = borderSize.getTopAndBottom() + 6 + roundToInt (f.getHeight() + 0.5f);
setBounds (component.getX(), component.getY() - height, component.getWidth(), height);
}