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

Hide breakpoint indicator when mouse leaves CodeEdit

This commit is contained in:
MewPurPur
2023-06-21 11:22:46 +02:00
parent ada712e06a
commit 6e182d41f4

View File

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