mirror of
https://codeberg.org/armin/wavetable.git
synced 2026-09-01 05:50:46 +02:00
More UI
This commit is contained in:
parent
8a591b3ab0
commit
3dbcbf73e5
10 changed files with 60 additions and 29 deletions
|
|
@ -15,6 +15,23 @@ WavetableAudioProcessorEditor::~WavetableAudioProcessorEditor()
|
|||
}
|
||||
|
||||
//==============================================================================
|
||||
void WavetableAudioProcessorEditor::showAboutInfo()
|
||||
{
|
||||
#if JUCE_DEBUG
|
||||
if (inspector == nullptr)
|
||||
{
|
||||
inspector = std::make_unique<melatonin::Inspector> (*this);
|
||||
inspector->setVisible(true);
|
||||
}
|
||||
else
|
||||
{
|
||||
inspector = nullptr;
|
||||
}
|
||||
#else
|
||||
ProcessorEditor::showAboutInfo();
|
||||
#endif
|
||||
}
|
||||
|
||||
void WavetableAudioProcessorEditor::paint (juce::Graphics& g)
|
||||
{
|
||||
ProcessorEditor::paint (g);
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue