You've already forked godot
mirror of
https://github.com/godotengine/godot.git
synced 2025-11-16 14:00:40 +00:00
Fix crash when exiting the editor
This commit is contained in:
@@ -2661,7 +2661,7 @@ Ref<Texture2D> VisualScriptEditor::get_theme_icon() {
|
|||||||
}
|
}
|
||||||
|
|
||||||
if (Control::has_theme_icon(icon_name, "EditorIcons")) {
|
if (Control::has_theme_icon(icon_name, "EditorIcons")) {
|
||||||
return get_parent_control()->get_theme_icon(icon_name, "EditorIcons");
|
return Control::get_theme_icon(icon_name, SNAME("EditorIcons"));
|
||||||
}
|
}
|
||||||
|
|
||||||
return Control::get_theme_icon(SNAME("VisualScript"), SNAME("EditorIcons"));
|
return Control::get_theme_icon(SNAME("VisualScript"), SNAME("EditorIcons"));
|
||||||
|
|||||||
Reference in New Issue
Block a user