2
0
Эх сурвалжийг харах

Merge pull request #15352 from thomaslynge/anim_drag_key_glitch

Visual glitch when dragging keyframes #15285
Rémi Verschelde 7 жил өмнө
parent
commit
5322ed05c7

+ 1 - 1
editor/animation_editor.cpp

@@ -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;