snap: add missing break statements. oops!

This commit is contained in:
Paul Davis 2022-12-20 21:54:35 -07:00
parent 818c30a98d
commit ed7e0a4166
1 changed files with 2 additions and 0 deletions

View File

@ -2965,8 +2965,10 @@ Editor::snap_to_bbt (timepos_t const & presnap, Temporal::RoundMode direction, S
break;
case RoundUpAlways:
bbt = bbt.round_up_to_bar ();
break;
case RoundNearest:
bbt = m.round_to_bar (bbt);
break;
default:
break;
}