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.cc5
1 files changed, 3 insertions, 2 deletions
diff --git a/gtk2_ardour/route_time_axis.cc b/gtk2_ardour/route_time_axis.cc
index 95a58013b4..53124723ef 100644
--- a/gtk2_ardour/route_time_axis.cc
+++ b/gtk2_ardour/route_time_axis.cc
@@ -432,10 +432,11 @@ RouteTimeAxisView::update_track_number_visibility ()
const int tnw = std::max(2u, _session->track_number_decimals()) * 8; // TODO 8 = max_width_of_digit_0_to_9()
number_label.set_size_request(3 + tnw, -1);
number_label.show ();
- name_hbox.set_size_request(95 - tnw, 0);
+ // -5 = -2 for table border - 3 for padding ^^
+ name_hbox.set_size_request(TimeAxisView::name_width_px - 5 - tnw, 0);
} else {
number_label.hide ();
- name_hbox.set_size_request(100, 0);
+ name_hbox.set_size_request(TimeAxisView::name_width_px, 0);
}
}