Merge pull request #77722 from ApplecrispEric/drag-drop-autocomplete

Cancel autocomplete after initiating drag
This commit is contained in:
Rémi Verschelde 2023-06-20 09:20:52 +02:00
commit 0653f7a5b0
No known key found for this signature in database
GPG key ID: C3336907360768E1

View file

@ -216,6 +216,10 @@ void CodeEdit::_notification(int p_what) {
}
}
} break;
case NOTIFICATION_DRAG_BEGIN: {
cancel_code_completion();
} break;
}
}