Merge pull request #22844 from samgreen/fix_gui_dragging_spam

Fix spam when dragging in the editor
This commit is contained in:
Rémi Verschelde 2018-10-11 17:48:19 +02:00 committed by GitHub
commit ebdb374d80
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 1 additions and 1 deletions

View File

@ -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);
}