aboutsummaryrefslogtreecommitdiff
path: root/tools/editor/editor_node.cpp
diff options
context:
space:
mode:
authorJulian Murgia - StraToN2016-02-24 22:07:46 +0100
committerRémi Verschelde2016-02-27 15:27:25 +0100
commitd86b12a3973a46a0b6890276e40f3ff464baa5a2 (patch)
tree9db733e252dabc0b69447a59585860a90063abe5 /tools/editor/editor_node.cpp
parentf0ba9c7e78cf4c95a0f9eb2c3cb382f18c715660 (diff)
downloadgodot-d86b12a3973a46a0b6890276e40f3ff464baa5a2.tar.gz
godot-d86b12a3973a46a0b6890276e40f3ff464baa5a2.tar.zst
godot-d86b12a3973a46a0b6890276e40f3ff464baa5a2.zip
Fixed closing a scene tab when it was not the CURRENT tab. Fixes #3810
Diffstat (limited to 'tools/editor/editor_node.cpp')
-rw-r--r--tools/editor/editor_node.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/tools/editor/editor_node.cpp b/tools/editor/editor_node.cpp
index 7fa85c447..b2623a590 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();
}
}