From bce37837d38333ef838c6df62ff97b20f4e769ec Mon Sep 17 00:00:00 2001 From: Robin Gareus Date: Thu, 6 Jun 2013 18:04:23 +0200 Subject: [PATCH] fix context-menu entry sensitivity for plugins w/o custom GUI --- gtk2_ardour/processor_box.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/processor_box.cc b/gtk2_ardour/processor_box.cc index 2f8513fd2a..ded931aa50 100644 --- a/gtk2_ardour/processor_box.cc +++ b/gtk2_ardour/processor_box.cc @@ -925,7 +925,7 @@ ProcessorBox::show_processor_menu (int arg) } /* allow editing with an Ardour-generated UI for plugin inserts with editors */ - edit_generic_action->set_sensitive (pi && pi->plugin()->has_editor ()); + edit_action->set_sensitive (pi && pi->plugin()->has_editor ()); /* disallow rename for multiple selections, for plugin inserts and for the fader */ rename_action->set_sensitive (single_selection && !pi && !boost::dynamic_pointer_cast (single_selection->processor ()));