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

Decrease LookAndFeel_V4 TextButton font size slightly

This commit is contained in:
ed 2018-03-07 14:24:46 +00:00
parent 06773f18bb
commit 4aa7e318bb

View file

@ -278,7 +278,7 @@ void LookAndFeel_V4::drawDocumentWindowTitleBar (DocumentWindow& window, Graphic
//==============================================================================
Font LookAndFeel_V4::getTextButtonFont (TextButton&, int buttonHeight)
{
return { jmin (18.0f, buttonHeight * 0.6f) };
return { jmin (16.0f, buttonHeight * 0.6f) };
}
void LookAndFeel_V4::drawButtonBackground (Graphics& g,