Fix yet another oversight for the windows icon file update
[ardour.git] / gtk2_ardour / vca_time_axis.cc
index becc14dce9a8d9c71df7e3c7d0571fe56f53f372..6a09c7f9a809ad84da9fbe0ba888ff7f6e6662d0 100644 (file)
@@ -33,7 +33,7 @@
 #include "ui_config.h"
 #include "vca_time_axis.h"
 
-#include "i18n.h"
+#include "pbd/i18n.h"
 
 using namespace ARDOUR;
 using namespace ARDOUR_UI_UTILS;
@@ -83,6 +83,9 @@ VCATimeAxisView::VCATimeAxisView (PublicEditor& ed, Session* s, ArdourCanvas::Ca
        spill_button.show ();
        gain_meter.get_gain_slider().show ();
 
+       controls_ebox.set_name ("ControlMasterBaseUnselected");
+       time_axis_frame.set_name ("ControlMasterBaseUnselected");
+
        s->config.ParameterChanged.connect (*this, invalidator (*this), boost::bind (&VCATimeAxisView::parameter_changed, this, _1), gui_context());
        Config->ParameterChanged.connect (*this, invalidator (*this), boost::bind (&VCATimeAxisView::parameter_changed, this, _1), gui_context());
        UIConfiguration::instance().ParameterChanged.connect (sigc::mem_fun (*this, &VCATimeAxisView::parameter_changed));
@@ -174,7 +177,7 @@ VCATimeAxisView::vca_property_changed (PropertyChange const & what_changed)
 void
 VCATimeAxisView::update_vca_name ()
 {
-       name_label.set_text (_vca->name());
+       name_label.set_text (_vca->full_name());
 }
 
 void