1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-20 01:14:20 +00:00

Fixed a compiler warning

This commit is contained in:
Tom Poole 2018-03-11 09:24:51 +00:00
parent 89d9ad0856
commit c077d8662e

View file

@ -2787,7 +2787,7 @@ Justification LookAndFeel_V2::getSidePanelTitleJustification (SidePanel& panel)
Path LookAndFeel_V2::getSidePanelDismissButtonShape (SidePanel& panel)
{
return getCrossShape (panel.getTitleBarHeight());
return getCrossShape ((float) panel.getTitleBarHeight());
}
//==============================================================================