summaryrefslogtreecommitdiff
path: root/gtk2_ardour
diff options
context:
space:
mode:
authorRobin Gareus <robin@gareus.org>2013-06-06 18:04:23 +0200
committerRobin Gareus <robin@gareus.org>2013-06-06 18:05:10 +0200
commitbce37837d38333ef838c6df62ff97b20f4e769ec (patch)
tree5eadeb910c7a24298e682518b7ea568662d29b71 /gtk2_ardour
parent36359a7d8f96a46574421e31d8980388320d62d0 (diff)
fix context-menu entry sensitivity for plugins w/o custom GUI
Diffstat (limited to 'gtk2_ardour')
-rw-r--r--gtk2_ardour/processor_box.cc2
1 files changed, 1 insertions, 1 deletions
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<Amp> (single_selection->processor ()));