1
0
mirror of https://github.com/godotengine/godot.git synced 2026-01-05 19:31:35 +00:00

Merge pull request #78509 from MewPurPur/redraw-code-edit-on-mouse-exit

Hide breakpoint indicator when mouse leaves CodeEdit
This commit is contained in:
Rémi Verschelde
2023-06-21 12:43:01 +02:00

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