From 24a339245fe8b833762f7801366000770a30e1ef Mon Sep 17 00:00:00 2001 From: Sam Green Date: Sun, 7 Oct 2018 14:50:42 -0700 Subject: Swap condition to prevent spam in editor. --- scene/gui/control.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/scene/gui/control.cpp b/scene/gui/control.cpp index b90a4c17f4..3017ffe1cf 100644 --- a/scene/gui/control.cpp +++ b/scene/gui/control.cpp @@ -769,7 +769,7 @@ void Control::force_drag(const Variant &p_data, Control *p_control) { void Control::set_drag_preview(Control *p_control) { ERR_FAIL_COND(!is_inside_tree()); - ERR_FAIL_COND(get_viewport()->gui_is_dragging()); + ERR_FAIL_COND(!get_viewport()->gui_is_dragging()); get_viewport()->_gui_set_drag_preview(this, p_control); } -- cgit v1.2.3