mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-07 07:14:56 +01:00
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:
parent
350051569f
commit
f31f9a09da
2 changed files with 2 additions and 1 deletions
|
|
@ -294,7 +294,7 @@ AudioTimeAxisView::route_active_changed ()
|
||||||
|
|
||||||
if (!_route->active()) {
|
if (!_route->active()) {
|
||||||
controls_table.hide();
|
controls_table.hide();
|
||||||
inactive_table.show_all();
|
inactive_table.show();
|
||||||
RouteTimeAxisView::hide_all_automation();
|
RouteTimeAxisView::hide_all_automation();
|
||||||
} else {
|
} else {
|
||||||
inactive_table.hide();
|
inactive_table.hide();
|
||||||
|
|
|
||||||
|
|
@ -431,6 +431,7 @@ RouteTimeAxisView::label_view ()
|
||||||
}
|
}
|
||||||
|
|
||||||
inactive_label.set_text (string_compose("(%1)", x));
|
inactive_label.set_text (string_compose("(%1)", x));
|
||||||
|
inactive_label.show ();
|
||||||
|
|
||||||
const int64_t track_number = _route->track_number ();
|
const int64_t track_number = _route->track_number ();
|
||||||
if (track_number == 0) {
|
if (track_number == 0) {
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue