From dc98fa6f3fa764fa226950771ce55be0ea22f910 Mon Sep 17 00:00:00 2001 From: Ben Loftis Date: Tue, 14 Mar 2017 09:27:59 -0500 Subject: [PATCH] Fix Faderport Proj button (show-editor action) --- libs/surfaces/faderport/gui.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/libs/surfaces/faderport/gui.cc b/libs/surfaces/faderport/gui.cc index e24af3601f..186fbd04e9 100644 --- a/libs/surfaces/faderport/gui.cc +++ b/libs/surfaces/faderport/gui.cc @@ -532,7 +532,7 @@ FPGUI::build_proj_action_combo (Gtk::ComboBox& cb, FaderPort::ButtonState bs) { vector > actions; - actions.push_back (make_pair (string (_("Show Editor Window")), string (X_("Mixer/toggle-mixer-to-editor")))); + actions.push_back (make_pair (string (_("Show Editor Window")), string (X_("Mixer/show-editor")))); actions.push_back (make_pair (string("Toggle Editor Lists"), string(X_("Editor/show-editor-list")))); actions.push_back (make_pair (string("Toggle Summary"), string(X_("Editor/ToggleSummary")))); actions.push_back (make_pair (string("Toggle Meterbridge"), string(X_("Common/toggle-meterbridge"))));