From c6dfb947eb31579c5a6453c7ea34ce2991497fa2 Mon Sep 17 00:00:00 2001 From: Paul Davis Date: Sun, 29 Nov 2015 11:43:14 -0500 Subject: [PATCH] faderport: add two functioning actions for the mix button --- libs/surfaces/faderport/gui.cc | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/libs/surfaces/faderport/gui.cc b/libs/surfaces/faderport/gui.cc index 32ca01068f..9e08885f88 100644 --- a/libs/surfaces/faderport/gui.cc +++ b/libs/surfaces/faderport/gui.cc @@ -419,13 +419,13 @@ FPGUI::build_mix_action_combo (Gtk::ComboBox& cb) rowp = model->append(); row = *(rowp); - row[action_columns.name] = _("Do this"); - row[action_columns.path] = X_("do-this"); + row[action_columns.name] = _("Toggle Editor & Mixer Windows"); + row[action_columns.path] = X_("Common/toggle-editor-mixer"); rowp = model->append(); row = *(rowp); - row[action_columns.name] = _("Do that"); - row[action_columns.path] = X_("do-that"); + row[action_columns.name] = _("Show/Hide Editor mixer strip"); + row[action_columns.path] = X_("Editor/show-editor-mixer"); cb.set_model (model); cb.pack_start (action_columns.name);