mirror of
https://github.com/Ardour/ardour.git
synced 2026-01-24 14:17:21 +01:00
NO-OP: braces, please
This commit is contained in:
parent
6e64838296
commit
dd823c7b31
1 changed files with 4 additions and 1 deletions
|
|
@ -115,8 +115,11 @@ EditorSources::selection_changed ()
|
|||
if ((iter = _model->get_iter (*i))) {
|
||||
/* highlight any regions in the editor that use this region's source */
|
||||
std::shared_ptr<ARDOUR::Region> region = (*iter)[_columns.region];
|
||||
if (!region)
|
||||
if (!region) {
|
||||
continue;
|
||||
}
|
||||
|
||||
|
||||
|
||||
std::shared_ptr<ARDOUR::Source> source = region->source ();
|
||||
if (source) {
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue