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:
authorCampbell Barton <ideasman42@gmail.com>2014-05-05 09:09:29 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-05-05 09:09:29 +0400
commitcf069afdfd11d8200a57cf8a4307d0e664ac4ecc (patch)
treebeecbe2a085b12adbe9321c4538081f6f8794c97 /source/blender/editors/space_nla
parent047c3aa728a4bb944616a084805988714b796d52 (diff)
Fix: T40016 ID Names translated in menus
Diffstat (limited to 'source/blender/editors/space_nla')
-rw-r--r--source/blender/editors/space_nla/nla_edit.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/space_nla/nla_edit.c b/source/blender/editors/space_nla/nla_edit.c
index 4eea5de616c..328e0b69707 100644
--- a/source/blender/editors/space_nla/nla_edit.c
+++ b/source/blender/editors/space_nla/nla_edit.c
@@ -563,6 +563,7 @@ void NLA_OT_actionclip_add(wmOperatorType *ot)
// TODO: this would be nicer as an ID-pointer...
prop = RNA_def_enum(ot->srna, "action", DummyRNA_NULL_items, 0, "Action", "");
RNA_def_enum_funcs(prop, RNA_action_itemf);
+ RNA_def_property_flag(prop, PROP_ENUM_NO_TRANSLATE);
ot->prop = prop;
}