cut cursor follows grid

This commit is contained in:
Paul Davis 2014-07-08 16:08:31 -04:00
parent 4d61f69078
commit f250d16487

View File

@ -5465,7 +5465,10 @@ RegionCutDrag::~RegionCutDrag ()
void
RegionCutDrag::motion (GdkEvent*, bool)
{
line->set_position (_drags->current_pointer_frame());
framepos_t where = _drags->current_pointer_frame();
_editor->snap_to (where);
line->set_position (where);
}
void