From 055a8417874346ed344dce59cd6bbbdaabfb04a7 Mon Sep 17 00:00:00 2001 From: nikolay Date: Thu, 28 Aug 2014 16:46:59 +0300 Subject: [PATCH] [Summary] Enable change track name when track is not recording [Reviewed] GZharun --- gtk2_ardour/route_time_axis.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc index 6ff4c21be1..f3ffbd7485 100644 --- a/gtk2_ardour/route_time_axis.cc +++ b/gtk2_ardour/route_time_axis.cc @@ -1925,7 +1925,7 @@ RouteTimeAxisView::can_edit_name () const { /* we do not allow track name changes if it is record enabled */ - return !_route->record_enabled(); + return !( (ARDOUR_UI::instance()->the_session()->record_status()==Session::Recording) && (_route->record_enabled()) ); } void