From d86b12a3973a46a0b6890276e40f3ff464baa5a2 Mon Sep 17 00:00:00 2001 From: Julian Murgia - StraToN Date: Wed, 24 Feb 2016 22:07:46 +0100 Subject: [PATCH] Fixed closing a scene tab when it was not the CURRENT tab. Fixes #3810 --- tools/editor/editor_node.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp index 7fa85c4476..b2623a590b 100644 --- a/tools/editor/editor_node.cpp +++ b/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(); } }