Asset Browser: Rename "Import Type" to "Import Method"

"Type" sounds like you're selecting a thing, not a behavior. So "Method"
should be better. Part of 104686.
This commit is contained in:
Julian Eisel 2023-02-15 12:58:15 +01:00
parent ae84a2956e
commit 972f58c482
Notes: blender-bot 2025-02-14 01:17:44 +00:00
Referenced by issue #104686, Improve import method selection for assets

View File

@ -6964,7 +6964,7 @@ static void rna_def_fileselect_asset_params(BlenderRNA *brna)
prop = RNA_def_property(srna, "import_type", PROP_ENUM, PROP_NONE);
RNA_def_property_enum_items(prop, asset_import_type_items);
RNA_def_property_ui_text(prop, "Import Type", "Determine how the asset will be imported");
RNA_def_property_ui_text(prop, "Import Method", "Determine how the asset will be imported");
/* Asset drag info saved by buttons stores the import type, so the space must redraw when import
* type changes. */
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_FILE_LIST, NULL);