use VCA full name in strips and track headers
authorPaul Davis <paul@linuxaudiosystems.com>
Sat, 28 Jan 2017 15:06:44 +0000 (16:06 +0100)
committerPaul Davis <paul@linuxaudiosystems.com>
Sat, 28 Jan 2017 15:06:44 +0000 (16:06 +0100)
gtk2_ardour/vca_master_strip.cc
gtk2_ardour/vca_time_axis.cc

index b3dcc06b1662e67197ced0f718428edc8e8ee724..d3f28cfb67379ad1a7bec16c3704d3909741719a 100644 (file)
@@ -437,7 +437,7 @@ void
 VCAMasterStrip::update_vca_name ()
 {
        /* 20 is a rough guess at the number of letters we can fit. */
-       vertical_button.set_text (short_version (_vca->name(), 20));
+       vertical_button.set_text (short_version (_vca->full_name(), 20));
 }
 
 void
index f98cda008c7920f923c21c83b3dc7ce855a45805..6a09c7f9a809ad84da9fbe0ba888ff7f6e6662d0 100644 (file)
@@ -177,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