Merge pull request #15352 from thomaslynge/anim_drag_key_glitch

Visual glitch when dragging keyframes #15285
This commit is contained in:
Rémi Verschelde 2018-01-05 08:00:25 +01:00 committed by GitHub
commit 5322ed05c7
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -1534,7 +1534,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 - (int)v_scroll->get_value();
if (i < 0 || i >= fit)
continue;
int y = h + i * h + sep;