diff options
author | Julian Murgia - StraToN <the.straton@gmail.com> | 2016-02-24 22:07:46 +0100 |
---|---|---|
committer | Julian Murgia - StraToN <the.straton@gmail.com> | 2016-02-24 22:07:46 +0100 |
commit | 5d5b7f2120efa61d4a75552f294e12e82f449a65 (patch) | |
tree | 9db733e252dabc0b69447a59585860a90063abe5 /tools/editor | |
parent | f2a567d925c70da5968cb9cb0e5aa18ed280d28d (diff) |
Fixed closing a scene tab when it was not the CURRENT tab. Fixes #3810
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/editor_node.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
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(); } } |