You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-12-03 16:55:53 +00:00
Fix crash in EditorFileDialog by checking for null pointer
This commit is contained in:
@@ -543,7 +543,7 @@ void EditorFileDialog::_thumbnail_done(const String &p_path, const Ref<Texture2D
|
|||||||
}
|
}
|
||||||
|
|
||||||
void EditorFileDialog::_request_single_thumbnail(const String &p_path) {
|
void EditorFileDialog::_request_single_thumbnail(const String &p_path) {
|
||||||
if (!FileAccess::exists(p_path) || !previews_enabled) {
|
if (!FileAccess::exists(p_path) || !previews_enabled || !EditorResourcePreview::get_singleton()) {
|
||||||
return;
|
return;
|
||||||
}
|
}
|
||||||
|
|
||||||
@@ -1162,7 +1162,7 @@ void EditorFileDialog::update_file_list() {
|
|||||||
d["path"] = file_info.path;
|
d["path"] = file_info.path;
|
||||||
item_list->set_item_metadata(-1, d);
|
item_list->set_item_metadata(-1, d);
|
||||||
|
|
||||||
if (display_mode == DISPLAY_THUMBNAILS && previews_enabled) {
|
if (display_mode == DISPLAY_THUMBNAILS && previews_enabled && EditorResourcePreview::get_singleton()) {
|
||||||
EditorResourcePreview::get_singleton()->queue_resource_preview(file_info.path, callable_mp(this, &EditorFileDialog::_thumbnail_result));
|
EditorResourcePreview::get_singleton()->queue_resource_preview(file_info.path, callable_mp(this, &EditorFileDialog::_thumbnail_result));
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user