mirror of
https://github.com/godotengine/godot.git
synced 2025-02-17 22:43:01 +08:00
Fix EditorPropertyEasing capturing drag events originated outside of it
(cherry picked from commit 31db95b048
)
This commit is contained in:
parent
cb438028ee
commit
01524c0430
@ -945,7 +945,7 @@ void EditorPropertyEasing::_drag_easing(const Ref<InputEvent> &p_ev) {
|
||||
|
||||
const Ref<InputEventMouseMotion> mm = p_ev;
|
||||
|
||||
if (mm.is_valid() && mm->get_button_mask() & BUTTON_MASK_LEFT) {
|
||||
if (dragging && mm.is_valid() && mm->get_button_mask() & BUTTON_MASK_LEFT) {
|
||||
float rel = mm->get_relative().x;
|
||||
if (rel == 0) {
|
||||
return;
|
||||
|
Loading…
Reference in New Issue
Block a user