From cb0b0416f454419cd1902434f7dffa2682417a56 Mon Sep 17 00:00:00 2001 From: Philipp Oeser Date: Mon, 31 Aug 2020 12:37:50 +0200 Subject: Fix T80258: UILayout.prop_search() issues with datablock names If the search menu was used for a string property, and a data-block was selected from the search, the value set would be an invalid name. The property would get the modified UI string, not the proper data name set. This problem was already once solved in rB249ccab111ac, but resurfaced in rB937d89afba36. Now only use the modified UI string if requires_exact_data_name is not true. Note: the comments in rB249ccab111ac [reg. library hints and string properties, also that pointer properties are preferred over string properties when dealing with IDs] still apply. Reviewers: severin, campbellbarton Subscribers: --- source/blender/editors/interface/interface_utils.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/source/blender/editors/interface/interface_utils.c b/source/blender/editors/interface/interface_utils.c index 208fd7136da..b6c2724b20e 100644 --- a/source/blender/editors/interface/interface_utils.c +++ b/source/blender/editors/interface/interface_utils.c @@ -489,7 +489,7 @@ void ui_rna_collection_search_update_fn(const struct bContext *C, /* If no item has an own icon to display, libraries can use the library icons rather than the * name prefix for showing the library status. */ int name_prefix_offset = cis->name_prefix_offset; - if (!has_id_icon && cis->is_id) { + if (!has_id_icon && cis->is_id && !requires_exact_data_name) { cis->iconid = UI_library_icon_get(cis->data); /* No need to re-allocate, string should be shorter than before (lib status prefix is * removed). */ -- cgit v1.2.3