Skip to content

Commit

Permalink
Change Kerning on slider labels
Browse files Browse the repository at this point in the history
  • Loading branch information
JoseDiazRohena committed Jan 7, 2024
1 parent 63203b5 commit 59ab172
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion libs/tote_bag/juce_gui/lookandfeel/LookAndFeel.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -210,7 +210,9 @@ juce::Font LookAndFeel::getLabelFont (juce::Label& l)
{
return fontHolder.getFont ("RobotoMonoMedium_ttf").withHeight (fontHeight);
}
return fontHolder.getFont ("RobotoMedium_ttf").withHeight (fontHeight);
return fontHolder.getFont ("RobotoMedium_ttf")
.withHeight (fontHeight)
.withExtraKerningFactor (.05f);
}

void LookAndFeel::drawButtonBackground (juce::Graphics& g,
Expand Down

0 comments on commit 59ab172

Please sign in to comment.