1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

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