Browse Source

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).
Andrii Doroshenko (Xrayez) 6 years ago
parent
commit
a4e6e2f342
1 changed files with 4 additions and 2 deletions
  1. 4 2
      editor/plugins/spatial_editor_plugin.cpp

+ 4 - 2
editor/plugins/spatial_editor_plugin.cpp

@@ -2108,9 +2108,11 @@ void SpatialEditorViewport::_notification(int p_what) {
 
 
 		set_process(visible);
 		set_process(visible);
 
 
-		if (visible)
+		if (visible) {
 			_update_camera(0);
 			_update_camera(0);
-
+		} else {
+			set_freelook_active(false);
+		}
 		call_deferred("update_transform_gizmo_view");
 		call_deferred("update_transform_gizmo_view");
 	}
 	}