mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-29 16:33:14 +01:00
redisplay mixer strips when visibility of one of them changes (makes X (hide) button work)
git-svn-id: svn://localhost/ardour2/branches/3.0@12998 d708f5d6-7413-0410-9779-e7cbd77b26cf
This commit is contained in:
parent
bd2bf3c52e
commit
e7fdb5bdcb
1 changed files with 2 additions and 0 deletions
|
|
@ -690,6 +690,7 @@ Mixer_UI::show_strip (MixerStrip* ms)
|
|||
MixerStrip* strip = (*i)[track_columns.strip];
|
||||
if (strip == ms) {
|
||||
(*i)[track_columns.visible] = true;
|
||||
redisplay_track_list ();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
@ -706,6 +707,7 @@ Mixer_UI::hide_strip (MixerStrip* ms)
|
|||
MixerStrip* strip = (*i)[track_columns.strip];
|
||||
if (strip == ms) {
|
||||
(*i)[track_columns.visible] = false;
|
||||
redisplay_track_list ();
|
||||
break;
|
||||
}
|
||||
}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue