mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-05 21:25:46 +01:00
Source and Region list: fix disappearing list items (break out of the loop instead of returning, so the list always gets thawed)
This commit is contained in:
parent
537d44e3ae
commit
51d57a3fb6
2 changed files with 2 additions and 2 deletions
|
|
@ -457,7 +457,7 @@ EditorRegions::regions_changed (boost::shared_ptr<RegionList> rl, const Property
|
|||
region_row_map.erase (map_it);
|
||||
_model->erase (r);
|
||||
}
|
||||
return;
|
||||
break;
|
||||
}
|
||||
|
||||
if (map_it != region_row_map.end ()) {
|
||||
|
|
|
|||
|
|
@ -517,7 +517,7 @@ EditorSources::regions_changed (boost::shared_ptr<ARDOUR::RegionList> rl, PBD::P
|
|||
|
||||
if (!region->whole_file ()) {
|
||||
/*this isn't on our list anyway; we can ignore it*/
|
||||
return;
|
||||
break;
|
||||
}
|
||||
|
||||
TreeModel::iterator i;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue