Visual glitch when dragging keyframes #15285

This commit is contained in:
Thomas Lynge 2018-01-05 00:11:54 +01:00
parent 3f9f0b3dbb
commit 251a017447
1 changed files with 1 additions and 1 deletions

View File

@ -1533,7 +1533,7 @@ void AnimationKeyEditor::_track_editor_draw() {
for (Map<SelectedKey, KeyInfo>::Element *E = selection.front(); E; E = E->next()) {
int idx = E->key().track;
int i = idx - v_scroll->get_value();
int i = idx - Math::floor(v_scroll->get_value());
if (i < 0 || i >= fit)
continue;
int y = h + i * h + sep;