summaryrefslogtreecommitdiff
path: root/gtk2_ardour/route_time_axis.cc
diff options
context:
space:
mode:
Diffstat (limited to 'gtk2_ardour/route_time_axis.cc')
-rw-r--r--gtk2_ardour/route_time_axis.cc10
1 files changed, 2 insertions, 8 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index b501214d6b..5d091375b4 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -1286,6 +1286,8 @@ RouteTimeAxisView::playlist () const
void
RouteTimeAxisView::name_entry_changed ()
{
+ TimeAxisView::name_entry_changed ();
+
string x = name_entry.get_text ();
if (x == _route->name()) {
@@ -2168,14 +2170,6 @@ void
RouteTimeAxisView::update_rec_display ()
{
RouteUI::update_rec_display ();
-
- if (_route->record_enabled()) {
- hide_name_entry ();
- show_name_label ();
- } else {
- hide_name_label ();
- show_name_entry ();
- }
}
void