Changed autocomplete to cancel when the user begins a drag

This commit is contained in:
Eric Brown 2023-06-01 01:15:44 -07:00
parent 574f917442
commit 42bc437615

View file

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