소스 검색

Update the zoom percentage when using Frame Selection in the 2D editor

This closes #36019.

(cherry picked from commit 3e95b79b65ac88ad4df59dc4ba5eb05f9c8b68af)
Hugo Locurcio 5 년 전
부모
커밋
93b99f2c89
1개의 변경된 파일1개의 추가작업 그리고 0개의 파일을 삭제
  1. 1 0
      editor/plugins/canvas_item_editor_plugin.cpp

+ 1 - 0
editor/plugins/canvas_item_editor_plugin.cpp

@@ -4967,6 +4967,7 @@ void CanvasItemEditor::_focus_selection(int p_op) {
 			zoom = scale_x < scale_y ? scale_x : scale_y;
 			zoom *= 0.90;
 			viewport->update();
+			_update_zoom_label();
 			call_deferred("_popup_callback", VIEW_CENTER_TO_SELECTION);
 		}
 	}