NO-OP: add missing braces

This commit is contained in:
Paul Davis 2020-07-05 15:25:54 -06:00
parent 0c7895298d
commit eaf88040cc
1 changed files with 3 additions and 1 deletions

View File

@ -6631,8 +6631,10 @@ Editor::set_loop_from_selection (bool play)
}
samplepos_t start, end;
if (!get_selection_extents (start, end))
if (!get_selection_extents (start, end)) {
return;
}
set_loop_range (start, end, _("set loop range from selection"));