Browse Source

Decrease LookAndFeel_V4 TextButton font size slightly

tags/2021-05-28
ed 7 years ago
parent
commit
4aa7e318bb
1 changed files with 1 additions and 1 deletions
  1. +1
    -1
      modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V4.cpp

+ 1
- 1
modules/juce_gui_basics/lookandfeel/juce_LookAndFeel_V4.cpp 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,


Loading…
Cancel
Save