Skip to content

Commit

Permalink
Merge branch 'ci_test' into develop
Browse files Browse the repository at this point in the history
  • Loading branch information
jerryuhoo authored Jul 28, 2022
2 parents 011e634 + 577fe50 commit 91c2be0
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 0 deletions.
2 changes: 2 additions & 0 deletions JuceLibraryCode/AppConfig.h
Original file line number Diff line number Diff line change
Expand Up @@ -45,8 +45,10 @@

#define JUCE_USE_DARK_SPLASH_SCREEN 1


#define JUCE_PROJUCER_VERSION 0x70001


//==============================================================================
#define JUCE_MODULE_AVAILABLE_juce_audio_basics 1
#define JUCE_MODULE_AVAILABLE_juce_audio_devices 1
Expand Down
4 changes: 4 additions & 0 deletions Source/PluginEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -24,6 +24,7 @@ FireAudioProcessorEditor::FireAudioProcessorEditor (FireAudioProcessor& p)
// however, AU plugin calls constructor after setStateInformation/
// So I set delay of 1 ms to reset size and other stuff.
// call function after 1 ms

// std::function<void()> initFunction = [this]() { initEditor(); };
// juce::Timer::callAfterDelay(1, initFunction);
//initEditor();
Expand Down Expand Up @@ -182,6 +183,7 @@ void FireAudioProcessorEditor::initEditor()
{
// setSize(processor.getSavedWidth(), processor.getSavedHeight());
// processor.setLineNum(multiband.getLineNum());

//processor.setPresetId(processor.getPresetId());
//lastPresetName = stateComponent.getPresetName();
//multiband.updateLines(1);
Expand Down Expand Up @@ -578,12 +580,14 @@ void FireAudioProcessorEditor::setDistortionGraph (juce::String modeId, juce::St

void FireAudioProcessorEditor::setMultiband()
{

//multiband.updateLines(1);
multiband.sortLines();
multiband.setLineRelatedBoundsByX();
multiband.setSoloRelatedBounds();
// multiband.resetFocus();
// processor.setLineNum(multiband.getLineNum());

}

void FireAudioProcessorEditor::setFourComponentsVisibility (juce::Component& component1, juce::Component& component2, juce::Component& component3, juce::Component& component4, int bandNum)
Expand Down

0 comments on commit 91c2be0

Please sign in to comment.