Fix #112604: Add "tag" to the tool tip of asset search
Asset search will also filter tags alongside names, this patch makes the description consistent with what it actually does. Pull Request: https://projects.blender.org/blender/blender/pulls/112609
This commit is contained in:
@@ -6860,7 +6860,8 @@ static void rna_def_fileselect_params(BlenderRNA *brna)
|
||||
|
||||
prop = RNA_def_property(srna, "filter_search", PROP_STRING, PROP_NONE);
|
||||
RNA_def_property_string_sdna(prop, nullptr, "filter_search");
|
||||
RNA_def_property_ui_text(prop, "Name Filter", "Filter by name, supports '*' wildcard");
|
||||
RNA_def_property_ui_text(
|
||||
prop, "Name or Tag Filter", "Filter by name or tag, supports '*' wildcard");
|
||||
RNA_def_property_flag(prop, PROP_TEXTEDIT_UPDATE);
|
||||
RNA_def_property_update(prop, NC_SPACE | ND_SPACE_FILE_LIST, nullptr);
|
||||
|
||||
|
||||
Reference in New Issue
Block a user