Skip to content

Commit

Permalink
Revert "Skip VST3 Menus in Reason (#6766)"
Browse files Browse the repository at this point in the history
This reverts commit cfac8cc.
  • Loading branch information
mkruselj authored Sep 23, 2023
1 parent be921b8 commit 77d0abe
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions src/surge-xt/SurgeSynthEditor.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -610,10 +610,6 @@ void SurgeSynthEditor::endMacroEdit(long macroNum)

juce::PopupMenu SurgeSynthEditor::hostMenuFor(Parameter *p)
{
// See issue 6752
if (juce::PluginHostType().isReason())
return {};

auto par = processor.paramsByID[processor.surge->idForParameter(p)];

if (auto *c = getHostContext())
Expand All @@ -625,10 +621,6 @@ juce::PopupMenu SurgeSynthEditor::hostMenuFor(Parameter *p)

juce::PopupMenu SurgeSynthEditor::hostMenuForMacro(int macro)
{
// See issue 6752
if (juce::PluginHostType().isReason())
return {};

auto par = processor.macrosById[macro];

if (auto *c = getHostContext())
Expand Down

0 comments on commit 77d0abe

Please sign in to comment.