NO-OP: braces, please

This commit is contained in:
Paul Davis 2026-01-23 14:28:17 -07:00
parent 6e64838296
commit dd823c7b31

View file

@ -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) {