1
0
Fork 0
mirror of https://github.com/juce-framework/JUCE.git synced 2026-01-10 23:44:24 +00:00

Use a GenericAudioProcessorEditor in the standalone wrapper if no editor is provided

This commit is contained in:
ed 2019-07-09 18:32:54 +01:00
parent 1951714776
commit c8d8201aba

View file

@ -730,7 +730,8 @@ private:
public:
MainContentComponent (StandaloneFilterWindow& filterWindow)
: owner (filterWindow), notification (this),
editor (owner.getAudioProcessor()->createEditorIfNeeded())
editor (owner.getAudioProcessor()->hasEditor() ? owner.getAudioProcessor()->createEditorIfNeeded()
: new GenericAudioProcessorEditor (*owner.getAudioProcessor()))
{
Value& inputMutedValue = owner.pluginHolder->getMuteInputValue();
@ -770,7 +771,8 @@ private:
if (shouldShowNotification)
notification.setBounds (r.removeFromTop (NotificationArea::height));
editor->setBounds (r);
if (editor != nullptr)
editor->setBounds (r);
}
private:
@ -830,9 +832,10 @@ private:
#if JUCE_IOS || JUCE_ANDROID
resized();
#else
setSize (editor->getWidth(),
editor->getHeight()
+ (shouldShowNotification ? NotificationArea::height : 0));
if (editor != nullptr)
setSize (editor->getWidth(),
editor->getHeight()
+ (shouldShowNotification ? NotificationArea::height : 0));
#endif
}