mirror of
https://github.com/godotengine/godot.git
synced 2024-11-21 03:18:37 +08:00
Visual glitch when dragging keyframes #15285
This commit is contained in:
parent
3f9f0b3dbb
commit
251a017447
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user