Update preview on filesystem change

Check and recreate a file's preview, if it has changes to it in the filesystem.

(cherry picked from commit 188ccf190b)
This commit is contained in:
ShyRed 2018-03-10 14:21:17 +01:00 committed by Hein-Pieter van Braam
parent 4ce6a8f5f9
commit 41f360f9c2
1 changed files with 3 additions and 0 deletions

View File

@ -1355,6 +1355,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
}