Update preview on filesystem change

Check and recreate a file's preview, if it has changes to it in the filesystem.
This commit is contained in:
ShyRed 2018-03-10 14:21:17 +01:00
parent aeb1c67b5b
commit 188ccf190b

View file

@ -1316,6 +1316,9 @@ void EditorFileSystem::update_file(const String &p_file) {
fs->files[cpos]->deps = _get_dependencies(p_file);
fs->files[cpos]->import_valid = ResourceLoader::is_import_valid(p_file);
// Update preview
EditorResourcePreview::get_singleton()->check_for_invalidation(p_file);
call_deferred("emit_signal", "filesystem_changed"); //update later
}