diff options
author | Juan Linietsky <reduzio@gmail.com> | 2016-01-29 08:41:22 -0300 |
---|---|---|
committer | Juan Linietsky <reduzio@gmail.com> | 2016-01-29 08:51:51 -0300 |
commit | 8341038bbe51e7e513dbc1370d5a0f2bd8f48ace (patch) | |
tree | 89ba8a22ae2809b8a5fd8383de152cf95d35a83e /tools/editor | |
parent | 593b01b709517c36e65507c20ccf9c80907c67a2 (diff) |
-Increment resources total in scene format text, fixes #3506
Diffstat (limited to 'tools/editor')
-rw-r--r-- | tools/editor/editor_file_system.cpp | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/tools/editor/editor_file_system.cpp b/tools/editor/editor_file_system.cpp index c7c1a48e34..ad59efc46f 100644 --- a/tools/editor/editor_file_system.cpp +++ b/tools/editor/editor_file_system.cpp @@ -1166,8 +1166,10 @@ EditorFileSystemDirectory *EditorFileSystem::get_path(const String& p_path) { void EditorFileSystem::_resource_saved(const String& p_path){ + //print_line("resource saved: "+p_path); EditorFileSystem::get_singleton()->update_file(p_path); + } String EditorFileSystem::_find_first_from_source(EditorFileSystemDirectory* p_dir,const String &p_src) const { |