summaryrefslogtreecommitdiffstats
path: root/editor/animation_bezier_editor.cpp
diff options
context:
space:
mode:
authorkit <kitbdev@gmail.com>2024-09-27 22:25:41 -0400
committerkit <kitbdev@gmail.com>2024-09-27 22:25:41 -0400
commit5af917e76395782df137d0fc86ce9fe227253767 (patch)
treeccf41e879fca7f669bc71f88b1430a1b54cf848f /editor/animation_bezier_editor.cpp
parent76a135926aef1f02f27e4e09093787f2c670956d (diff)
downloadredot-engine-5af917e76395782df137d0fc86ce9fe227253767.tar.gz
Fix mouse clamping in Animation Bezier box select
Diffstat (limited to 'editor/animation_bezier_editor.cpp')
-rw-r--r--editor/animation_bezier_editor.cpp5
1 files changed, 0 insertions, 5 deletions
diff --git a/editor/animation_bezier_editor.cpp b/editor/animation_bezier_editor.cpp
index 2e8c727849..8d7c6a1f16 100644
--- a/editor/animation_bezier_editor.cpp
+++ b/editor/animation_bezier_editor.cpp
@@ -1501,11 +1501,6 @@ void AnimationBezierTrackEdit::gui_input(const Ref<InputEvent> &p_event) {
}
box_selection_to = mm->get_position();
-
- if (get_local_mouse_position().y < 0) {
- // Avoid cursor from going too above, so it does not lose focus with viewport.
- warp_mouse(Vector2(get_local_mouse_position().x, 0));
- }
queue_redraw();
}