13
0

use a minimum note length of whatever 1 px is in beats in NoteCreateDrag.

This commit is contained in:
nick_m 2016-11-21 01:44:56 +11:00
parent 7eed31a4b2
commit d92d9d3a79

View File

@ -6306,7 +6306,7 @@ NoteCreateDrag::finished (GdkEvent* ev, bool had_movement)
/* we create a note even if there was no movement */
framepos_t const start = min (_note[0], _note[1]);
framepos_t const start_sess_rel = start + _region_view->region()->position();
framecnt_t length = (framecnt_t) fabs ((double)(_note[0] - _note[1]));
framecnt_t length = max (_editor->pixel_to_sample (1.0), (framecnt_t) fabs ((double)(_note[0] - _note[1])));
framecnt_t const g = grid_frames (start);
if (_editor->get_grid_music_divisions (ev->button.state) != 0 && length < g) {