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:
parent
ff263ecded
commit
a9eb179dc2
1 changed files with 3 additions and 3 deletions
|
|
@ -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);
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue