Amend 4f41367836: fix show/hide latency label

This commit is contained in:
Robin Gareus 2019-09-29 16:59:18 +02:00
parent cd5f70e69a
commit 68f237169f
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 2 additions and 0 deletions

View File

@ -239,11 +239,13 @@ ARDOUR_UI::repack_transport_hbox ()
if (show_pdc) {
latency_disable_button.show ();
route_latency_value.show ();
io_latency_label.show ();
io_latency_value.show ();
latency_spacer.show ();
} else {
latency_disable_button.hide ();
route_latency_value.hide ();
io_latency_label.hide ();
io_latency_value.hide ();
latency_spacer.hide ();
}