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/animation
parent047c3aa728a4bb944616a084805988714b796d52 (diff)
Fix: T40016 ID Names translated in menus
Diffstat (limited to 'source/blender/editors/animation')
-rw-r--r--source/blender/editors/animation/anim_markers.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/source/blender/editors/animation/anim_markers.c b/source/blender/editors/animation/anim_markers.c
index d5a395cc58c..04363f61fd6 100644
--- a/source/blender/editors/animation/anim_markers.c
+++ b/source/blender/editors/animation/anim_markers.c
@@ -1418,6 +1418,7 @@ static void MARKER_OT_make_links_scene(wmOperatorType *ot)
/* properties */
prop = RNA_def_enum(ot->srna, "scene", DummyRNA_NULL_items, 0, "Scene", "");
RNA_def_enum_funcs(prop, RNA_scene_itemf);
+ RNA_def_property_flag(prop, PROP_ENUM_NO_TRANSLATE);
ot->prop = prop;
}