Tweak ModulationOverview

This commit is contained in:
Roland Rabien 2023-10-05 05:23:29 -07:00
commit 971cbc8ab9
3 changed files with 6 additions and 2 deletions

@ -1 +1 @@
Subproject commit ef1b80ac128815eb18c6a309e95ddf4b044940cc Subproject commit 7486e86f665dc439048394934d06ebba19df5f73

View file

@ -21,7 +21,10 @@ WavetableAudioProcessorEditor::WavetableAudioProcessorEditor (WavetableAudioProc
}; };
addAndMakeVisible (usage); addAndMakeVisible (usage);
usage.setBounds (45, 12, 150, 16); addChildComponent (modOverview);
usage.setBounds (45, 12, 70, 16);
modOverview.setBounds (usage.getRight() + 10, 12, 150, 16);
scope.setBounds (714, 5, 177, 30); scope.setBounds (714, 5, 177, 30);
setSize (943, 671); setSize (943, 671);

View file

@ -25,6 +25,7 @@ private:
gin::TriggeredScope scope { wtProc.scopeFifo }; gin::TriggeredScope scope { wtProc.scopeFifo };
gin::SynthesiserUsage usage { wtProc }; gin::SynthesiserUsage usage { wtProc };
gin::ModulationOverview modOverview { wtProc.modMatrix };
Editor editor { wtProc }; Editor editor { wtProc };