faderport: add two functioning actions for the mix button
authorPaul Davis <paul@linuxaudiosystems.com>
Sun, 29 Nov 2015 16:43:14 +0000 (11:43 -0500)
committerPaul Davis <paul@linuxaudiosystems.com>
Sun, 29 Nov 2015 16:43:14 +0000 (11:43 -0500)
libs/surfaces/faderport/gui.cc

index 32ca01068f24d74295fc1fb477713f178855f713..9e08885f883d5a6f16b4664f80ae0af88cee4e6c 100644 (file)
@@ -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);