Compare commits

..

11 Commits

Author SHA1 Message Date
Wilson E. Alvarez 5f9bdd0dce
Merge 9767cd15b3 into 576df4092a 2025-02-05 17:58:06 +00:00
Wilson E. Alvarez 9767cd15b3
Fix broken conversion: Ref<Script> to const String 2025-02-05 12:57:31 -05:00
Wilson E. Alvarez c8be237a0d
Fix unhandled PROPERTY_HINT_NO_NODEPATH warning
Due to upstream change:

	6f7525c396
2025-02-02 19:48:37 -05:00
Wilson E. Alvarez 52c4244798
Override renamed EditorPlugin::get_name() method
Due to upstream change:

	0ab3dc273e
2025-02-02 19:48:37 -05:00
Wilson E. Alvarez aa1b8e1d1f
Refactor EditorHelpBit usage
Due to upstream change:

	4e19ab8afe
2025-02-02 19:48:37 -05:00
Wilson E. Alvarez 96a32bea50
Fix unhandled PROPERTY_HINT_ONESHOT warning
Due to upstream change:

	761a20f7a7
2025-02-02 19:48:37 -05:00
Wilson E. Alvarez 7674f07ac6
Fix forbidden comparisons between Ref and nullptr.
Necessary when compiling with strict_checks=yes.

Due to upstream change:

	df29cc696f
2025-02-02 19:48:37 -05:00
Wilson E. Alvarez d28160f17f
Fix internal Button set_icon calls to set_button_icon
Due to upstream change:

    562c666e3d
2025-02-02 19:48:37 -05:00
Wilson E. Alvarez 9818dfaad4
Fix unhandled PROPERTY_HINT_TOOL_BUTTON warning
Due to upstream change:

	85dfd89653
2025-02-02 19:48:37 -05:00
Wilson E. Alvarez 588d173924
Fix unhandled PROPERTY_HINT_DICTIONARY_TYPE warning
Due to upstream change:

	9853a69144
2025-02-02 19:48:37 -05:00
Wilson E. Alvarez e56f010366
Update EditorMainScreen calls after its extraction
Due to upstream change:

	5e1c9d68aa
2025-02-02 19:48:37 -05:00
1 changed files with 1 additions and 1 deletions

View File

@ -93,7 +93,7 @@ Ref<Texture2D> LimboUtility::get_task_icon(String p_class_or_script_path) const
}
EditorData &ed = EditorNode::get_editor_data();
Ref<Texture2D> script_icon = ed.get_script_icon(s);
Ref<Texture2D> script_icon = ed.get_script_icon(s->get_path());
if (script_icon.is_valid()) {
return script_icon;
}