use VCA full name in strips and track headers

This commit is contained in:
Paul Davis 2017-01-28 16:06:44 +01:00
parent e12e8716ba
commit c786328966
2 changed files with 2 additions and 2 deletions

View 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

View 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