Ensure to disable freelook when leaving spatial editor
Fixes and prevents the problem with mouse getting stuck in MOUSE_MODE_CAPTURED when switching to canvas item editor plugin by any means other than manually (with mouse).
This commit is contained in:
parent
e761af5794
commit
a4e6e2f342
|
@ -2108,9 +2108,11 @@ void SpatialEditorViewport::_notification(int p_what) {
|
|||
|
||||
set_process(visible);
|
||||
|
||||
if (visible)
|
||||
if (visible) {
|
||||
_update_camera(0);
|
||||
|
||||
} else {
|
||||
set_freelook_active(false);
|
||||
}
|
||||
call_deferred("update_transform_gizmo_view");
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue