13
0

Tempo ramps - fix for dragging audio-locked meters over no time.

This commit is contained in:
nick_m 2016-04-03 04:20:47 +10:00
parent dabed0672d
commit 3059adea7b

View File

@ -3378,7 +3378,9 @@ TempoMarkerDrag::motion (GdkEvent* event, bool first_move)
} else if (use_snap) {
map.round_bbt (when, _editor->get_grid_beat_divisions (0));
}
pf = map.predict_tempo_frame (_real_section, when);
if (use_snap) {
pf = map.predict_tempo_frame (_real_section, when);
}
map.gui_move_tempo_frame (_real_section, pf);
}
}