Преглед изворни кода

Fix mouse clamping in Animation Bezier box select

kit пре 11 месеци
родитељ
комит
5af917e763
1 измењених фајлова са 0 додато и 5 уклоњено
  1. 0 5
      editor/animation_bezier_editor.cpp

+ 0 - 5
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();
 	}