summaryrefslogtreecommitdiff
path: root/gtk2_ardour/control_slave_ui.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/control_slave_ui.cc')
-rw-r--r--gtk2_ardour/control_slave_ui.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/gtk2_ardour/control_slave_ui.cc b/gtk2_ardour/control_slave_ui.cc
index 306b7c495b..98383dfe0c 100644
--- a/gtk2_ardour/control_slave_ui.cc
+++ b/gtk2_ardour/control_slave_ui.cc
@@ -52,7 +52,7 @@ ControlSlaveUI::ControlSlaveUI (Session* s)
Gtkmm2ext::UI::instance()->set_tip (*this, _("VCA Assign"));
initial_button.set_no_show_all (true);
- initial_button.set_name (X_("vca assign"));
+ initial_button.set_name (X_("vca assign button"));
initial_button.set_text (_("-VCAs-"));
initial_button.show ();
initial_button.add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
@@ -225,7 +225,7 @@ ControlSlaveUI::add_vca_button (boost::shared_ptr<VCA> vca)
ArdourButton* vca_button = manage (new ArdourButton (ArdourButton::default_elements));
vca_button->set_no_show_all (true);
- vca_button->set_name (X_("vca assign"));
+ vca_button->set_name (X_("vca assign button"));
vca_button->add_events (Gdk::BUTTON_PRESS_MASK|Gdk::BUTTON_RELEASE_MASK);
vca_button->signal_button_release_event().connect (sigc::bind (sigc::mem_fun (*this, &ControlSlaveUI::specific_vca_button_release), vca->number()), false);
vca_button->set_text (PBD::to_string (vca->number()));