mirror of
https://github.com/Ardour/ardour.git
synced 2025-12-06 23:05:04 +01:00
coverage frames must still be deleted when switching back to Overlay mode
This commit is contained in:
parent
19e6273502
commit
90202f7675
1 changed files with 6 additions and 9 deletions
|
|
@ -1615,17 +1615,14 @@ AudioRegionView::set_fade_visibility (bool yn)
|
||||||
void
|
void
|
||||||
AudioRegionView::update_coverage_frames (LayerDisplay d)
|
AudioRegionView::update_coverage_frames (LayerDisplay d)
|
||||||
{
|
{
|
||||||
if (d != Stacked) {
|
|
||||||
/* don't do coverage frames unless we're in stacked mode */
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
RegionView::update_coverage_frames (d);
|
RegionView::update_coverage_frames (d);
|
||||||
|
|
||||||
if (fade_in_handle) { fade_in_handle->raise_to_top (); }
|
if (d == Stacked) {
|
||||||
if (fade_out_handle) { fade_out_handle->raise_to_top (); }
|
if (fade_in_handle) { fade_in_handle->raise_to_top (); }
|
||||||
if (fade_in_trim_handle) { fade_in_trim_handle->raise_to_top (); }
|
if (fade_out_handle) { fade_out_handle->raise_to_top (); }
|
||||||
if (fade_out_trim_handle) { fade_out_trim_handle->raise_to_top (); }
|
if (fade_in_trim_handle) { fade_in_trim_handle->raise_to_top (); }
|
||||||
|
if (fade_out_trim_handle) { fade_out_trim_handle->raise_to_top (); }
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue