tempo mapping: remove an unnecessary limit on tempo-drags

a) mouse-scaling is not 1:1
b) invalid tempo values are prevented internally anyway
This commit is contained in:
Ben Loftis 2023-05-17 09:37:16 -05:00
parent ca5e56f98c
commit a217c58ff5
1 changed files with 0 additions and 6 deletions

View File

@ -3646,12 +3646,6 @@ MappingTwistDrag::motion (GdkEvent* event, bool first_move)
}
}
if (_drags->current_pointer_time() >= timepos_t::from_superclock (next.sclock())) {
return;
}
if (_drags->current_pointer_time() <= timepos_t::from_superclock (prev.sclock())) {
return;
}
/* XXX needs to scale somehow with zoom level */