소스 검색

Fixed closing a scene tab when it was not the CURRENT tab. Fixes #3810

Julian Murgia - StraToN 9 년 전
부모
커밋
5d5b7f2120
1개의 변경된 파일1개의 추가작업 그리고 1개의 파일을 삭제
  1. 1 1
      tools/editor/editor_node.cpp

+ 1 - 1
tools/editor/editor_node.cpp

@@ -4539,7 +4539,7 @@ void EditorNode::_scene_tab_closed(int p_tab) {
 	}
 	else {
 		_remove_scene(p_tab);
-		//_update_scene_tabs();
+		_update_scene_tabs();
 	}
 
 }