Merge pull request #68842 from Uxeron/DragPositionFix
Fixed `_get_drag_data` getting incorrect position on a scaled `Control`
This commit is contained in:
commit
84c404f6bc
|
@ -1623,7 +1623,7 @@ void Viewport::_gui_input_event(Ref<InputEvent> p_event) {
|
|||
Control *control = Object::cast_to<Control>(ci);
|
||||
if (control) {
|
||||
gui.dragging = true;
|
||||
gui.drag_data = control->get_drag_data(control->get_global_transform_with_canvas().affine_inverse().xform(mpos) - gui.drag_accum);
|
||||
gui.drag_data = control->get_drag_data(control->get_global_transform_with_canvas().affine_inverse().xform(mpos - gui.drag_accum));
|
||||
if (gui.drag_data.get_type() != Variant::NIL) {
|
||||
gui.mouse_focus = nullptr;
|
||||
gui.forced_mouse_focus = false;
|
||||
|
|
Loading…
Reference in New Issue