mirror of
https://github.com/godotengine/godot.git
synced 2025-11-10 02:21:15 +00:00
Hide breakpoint indicator when mouse leaves CodeEdit
This commit is contained in:
parent
ada712e06a
commit
6e182d41f4
1 changed files with 4 additions and 0 deletions
|
|
@ -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;
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue