mirror of https://github.com/godotengine/godot
Merge pull request #78509 from MewPurPur/redraw-code-edit-on-mouse-exit
Hide breakpoint indicator when mouse leaves CodeEdit
This commit is contained in:
commit
ee41b2097c
|
|
@ -220,6 +220,10 @@ void CodeEdit::_notification(int p_what) {
|
||||||
case NOTIFICATION_DRAG_BEGIN: {
|
case NOTIFICATION_DRAG_BEGIN: {
|
||||||
cancel_code_completion();
|
cancel_code_completion();
|
||||||
} break;
|
} break;
|
||||||
|
|
||||||
|
case NOTIFICATION_MOUSE_EXIT: {
|
||||||
|
queue_redraw();
|
||||||
|
} break;
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue