From a5b85c331e512920602363025d76190ba2734b2b Mon Sep 17 00:00:00 2001 From: kleonc <9283098+kleonc@users.noreply.github.com> Date: Sun, 6 Feb 2022 23:39:26 +0100 Subject: [PATCH] SpriteFramesEditor Fix crash when selecting non-Texture file for splitting (cherry picked from commit 87b4db9e636a8abf5996b1d6f028132a5dea4a08) --- editor/plugins/sprite_frames_editor_plugin.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/editor/plugins/sprite_frames_editor_plugin.cpp b/editor/plugins/sprite_frames_editor_plugin.cpp index be491b5ecb1..f3f8fd7b873 100644 --- a/editor/plugins/sprite_frames_editor_plugin.cpp +++ b/editor/plugins/sprite_frames_editor_plugin.cpp @@ -299,7 +299,7 @@ void SpriteFramesEditor::_sheet_spin_changed(double) { } void SpriteFramesEditor::_prepare_sprite_sheet(const String &p_file) { - Ref texture = ResourceLoader::load(p_file); + Ref texture = ResourceLoader::load(p_file); if (!texture.is_valid()) { EditorNode::get_singleton()->show_warning(TTR("Unable to load images")); ERR_FAIL_COND(!texture.is_valid());