Skip to content

Commit

Permalink
No commit message
Browse files Browse the repository at this point in the history
  • Loading branch information
psemiletov committed Aug 26, 2023
1 parent 8e2cfe5 commit 124359b
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 3 deletions.
7 changes: 4 additions & 3 deletions Source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -386,16 +386,17 @@ CAudioProcessorEditor::CAudioProcessorEditor (CAudioProcessor& parent, juce::Aud

addAndMakeVisible (l_plugin_name);
l_plugin_name.setSize (180 + XFILLER, 48);
l_plugin_name.setTopLeftPosition (gr_options.getX(), gr_options.getY() + gr_options.getHeight() + (YFILLER * 2));
l_plugin_name.setTopLeftPosition (gr_options.getX(), gr_options.getY() + gr_options.getHeight() + (YFILLER * 3));
l_plugin_name.setText (juce::CharPointer_UTF8("ДРАМЛАБУХ"), juce::NotificationType::dontSendNotification);
l_plugin_name.setFont (f_logo);


addAndMakeVisible (hl_homepage);
hl_homepage.setSize (280 + XFILLER, 24);
hl_homepage.setTopLeftPosition (l_plugin_name.getX(), l_plugin_name.getY() + l_plugin_name.getHeight() + (YFILLER * 2));
hl_homepage.setTopLeftPosition (l_plugin_name.getX(), l_plugin_name.getY() + l_plugin_name.getHeight() + YFILLER);
hl_homepage.setURL (juce::URL("https://psemiletov.github.io/drumlabooh"));
hl_homepage.setButtonText ("psemiletov.github.io/drumlabooh");
hl_homepage.setFont (f_sitelink,false, juce::Justification::left);
hl_homepage.setFont (f_sitelink,false, juce::Justification::left);

// setSize (WINDOW_WIDTH, WINDOW_HEIGHT);

Expand Down
1 change: 1 addition & 0 deletions Source/PluginEditor.h
Original file line number Diff line number Diff line change
Expand Up @@ -126,6 +126,7 @@ class CAudioProcessorEditor: public juce::AudioProcessorEditor,
std::unique_ptr<ButtonAttachment> invertAttachment;

juce::Font f_sitelink { 20.0f, juce::Font::bold};
juce::Font f_logo { 40.0f, juce::Font::bold};


juce::Font f_kitname_font { 20.0f, juce::Font::bold};
Expand Down

0 comments on commit 124359b

Please sign in to comment.