From cccb8d676b2f2d242b160ccb9ae8c79c072dc6a2 Mon Sep 17 00:00:00 2001 From: VKamyshniy Date: Tue, 29 Jul 2014 12:34:42 +0300 Subject: [PATCH] [Summary] Fixing the display of number of tracks --- gtk2_ardour/time_axis_view.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/gtk2_ardour/time_axis_view.cc b/gtk2_ardour/time_axis_view.cc index 2c6406bbfe..9e329336a9 100644 --- a/gtk2_ardour/time_axis_view.cc +++ b/gtk2_ardour/time_axis_view.cc @@ -235,7 +235,7 @@ TimeAxisView::show_at (double y, int& nth, VBox *parent) } _order = nth; - number_label.set_text (string_compose (_("%1"), _order)); + number_label.set_text (string_compose (_("%1"), _order+1)); if (_y_position != y) { _canvas_display->set_y_position (y);