Merge pull request #75113 from m4gr3d/fix_2d_editor_dragging_main
Fix the issue preventing dragging in the 2D editor
This commit is contained in:
commit
5cf878c090
|
@ -130,7 +130,12 @@ bool ViewPanner::gui_input(const Ref<InputEvent> &p_event, Rect2 p_canvas_rect)
|
|||
|
||||
Ref<InputEventScreenDrag> screen_drag = p_event;
|
||||
if (screen_drag.is_valid()) {
|
||||
callback_helper(pan_callback, varray(screen_drag->get_relative(), p_event));
|
||||
if (Input::get_singleton()->is_emulating_mouse_from_touch() || Input::get_singleton()->is_emulating_touch_from_mouse()) {
|
||||
// This set of events also generates/is generated by
|
||||
// InputEventMouseButton/InputEventMouseMotion events which will be processed instead.
|
||||
} else {
|
||||
callback_helper(pan_callback, varray(screen_drag->get_relative(), p_event));
|
||||
}
|
||||
}
|
||||
|
||||
Ref<InputEventKey> k = p_event;
|
||||
|
|
Loading…
Reference in New Issue