Преглед изворни кода

Merge pull request #3824 from StraToN/fix-close-button

Fixed closing a scene tab when it was not the CURRENT tab. Fixes #3810
Rémi Verschelde пре 9 година
родитељ
комит
c91b1daad8
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();
 	}
 
 }