1
0
mirror of https://github.com/godotengine/godot.git synced 2025-11-05 12:10:55 +00:00

Merge pull request #82842 from YuriSizov/gdext-icons-are-relative-maaaan

Resolve relative icon paths for GDExtensions
This commit is contained in:
Rémi Verschelde
2023-10-05 16:32:40 +02:00

View File

@@ -937,7 +937,12 @@ Error GDExtensionResourceLoader::load_gdextension_resource(const String &p_path,
List<String> keys; List<String> keys;
config->get_section_keys("icons", &keys); config->get_section_keys("icons", &keys);
for (const String &key : keys) { for (const String &key : keys) {
p_extension->class_icon_paths[key] = config->get_value("icons", key); String icon_path = config->get_value("icons", key);
if (icon_path.is_relative_path()) {
icon_path = p_path.get_base_dir().path_join(icon_path);
}
p_extension->class_icon_paths[key] = icon_path;
} }
} }