Fix inactive track header label display

Since 8fced29372 introduced no_show_all(), the packed widgets
need to be explicitly displayed.
This commit is contained in:
Robin Gareus 2020-05-05 04:22:53 +02:00
parent 350051569f
commit f31f9a09da
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
2 changed files with 2 additions and 1 deletions

View File

@ -294,7 +294,7 @@ AudioTimeAxisView::route_active_changed ()
if (!_route->active()) {
controls_table.hide();
inactive_table.show_all();
inactive_table.show();
RouteTimeAxisView::hide_all_automation();
} else {
inactive_table.hide();

View File

@ -431,6 +431,7 @@ RouteTimeAxisView::label_view ()
}
inactive_label.set_text (string_compose("(%1)", x));
inactive_label.show ();
const int64_t track_number = _route->track_number ();
if (track_number == 0) {