Make group tabs insensitive when spilling sends

* Mixer layout does not change when spilling sends
* Tabs don't automatically show after spill_nothing()
  even if `show-group-tabs` is off
This commit is contained in:
Robin Gareus 2021-03-28 17:46:01 +02:00
parent 88ed770bce
commit 8fbde5860d
Signed by: rgareus
GPG Key ID: A090BCE02CF57F04
1 changed files with 2 additions and 2 deletions

View File

@ -3554,9 +3554,9 @@ Mixer_UI::show_spill (boost::shared_ptr<Stripable> s)
if (s) {
s->DropReferences.connect (_spill_gone_connection, invalidator (*this), boost::bind (&Mixer_UI::spill_nothing, this), gui_context());
_group_tabs->hide ();
_group_tabs->set_sensitive (false);
} else {
_group_tabs->show ();
_group_tabs->set_sensitive (true);
}
redisplay_track_list ();
}