Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Montagne <montagne29@wanadoo.fr>2016-01-29 17:05:51 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2016-01-29 17:06:46 +0300
commit75838de7c30ddb69ea27754d70bf05693b5acf52 (patch)
tree2e1219069d81ee734bd7502ec996826bc77f2091 /source/blender/editors/interface/interface.c
parentd3989a314084736a5715b77ce1c2d7f8f5f2a537 (diff)
Fix i18n-related points in T47265 - mostly, fix non-translated items in enum-search popup menu.
Diffstat (limited to 'source/blender/editors/interface/interface.c')
-rw-r--r--source/blender/editors/interface/interface.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/interface/interface.c b/source/blender/editors/interface/interface.c
index 9ac2117d622..4faae453a60 100644
--- a/source/blender/editors/interface/interface.c
+++ b/source/blender/editors/interface/interface.c
@@ -4322,7 +4322,7 @@ static void operator_enum_search_cb(const struct bContext *C, void *but, const c
EnumPropertyItem *item, *item_array;
bool do_free;
- RNA_property_enum_items((bContext *)C, ptr, prop, &item_array, NULL, &do_free);
+ RNA_property_enum_items_gettexted((bContext *)C, ptr, prop, &item_array, NULL, &do_free);
for (item = item_array; item->identifier; item++) {
/* note: need to give the index rather than the identifier because the enum can be freed */