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
commit ee41b2097c
No known key found for this signature in database
GPG Key ID: C3336907360768E1

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