Skip to content

Commit f6e535d

Browse files
committed
removed Verdana font for cross-platform compatibility
1 parent 04a0882 commit f6e535d

File tree

2 files changed

+7
-2
lines changed

2 files changed

+7
-2
lines changed

Source/GuiStyles.h

Lines changed: 6 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,11 @@ class GrayBlueLookAndFeel : public juce::LookAndFeel_V4
3131
setColour(juce::ComboBox::arrowColourId, juce::Colours::aliceblue);
3232

3333
// fonts
34-
setDefaultSansSerifTypeface(juce::LookAndFeel::getTypefaceForFont(juce::Font("Verdana", 18.0f, juce::Font::plain)));
34+
// setDefaultSansSerifTypeface(juce::LookAndFeel::getTypefaceForFont(juce::Font("Open Sans", 18.0f, juce::Font::plain)));
3535
}
36+
37+
// juce::Font getLabelFont(juce::Label& label) override
38+
// {
39+
// return juce::Font("Open Sans", 18.0f, juce::Font::plain);
40+
// }
3641
};

Source/PluginEditor.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -176,7 +176,7 @@ void RSAlgorithmicVerbAudioProcessorEditor::paint (juce::Graphics& g)
176176
g.drawFittedText ("RS Algorithmic Verb", 25, 10, 350, 45, juce::Justification::left, 1);
177177
// Info
178178
g.setFont(16.0f);
179-
g.drawFittedText("Version 0.5.0\n reillyspitzfaden.com", getWidth() - 375, 15, 350, 45, juce::Justification::right, 2);
179+
g.drawFittedText("Version 0.5.1\n reillyspitzfaden.com", getWidth() - 375, 15, 350, 45, juce::Justification::right, 2);
180180

181181
// panels
182182
// g.setColour(juce::Colour::fromRGB(68, 81, 96));

0 commit comments

Comments
 (0)