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:
ChengduLittleA
2023-09-21 16:00:14 +02:00
committed by YimingWu
parent 057de815ef
commit 4720fda1a7
+2 -1
View File
@@ -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);