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>2010-02-11 00:15:44 +0300
committerCampbell Barton <ideasman42@gmail.com>2010-02-11 00:15:44 +0300
commit148435b70a1ab15d7128a4ea61d22dea8ee5b1c9 (patch)
treece52babf94ef1678fb32632665e9dcf8c665cbb4 /source/blender/editors/animation/keyframing.c
parent577bfb4e71f94942925eb936d41fb8f5af6385e9 (diff)
batch remove .'s used with RNA_def_struct_ui_text
Diffstat (limited to 'source/blender/editors/animation/keyframing.c')
-rw-r--r--source/blender/editors/animation/keyframing.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/animation/keyframing.c b/source/blender/editors/animation/keyframing.c
index f44b45baf50..1eb2a82cccf 100644
--- a/source/blender/editors/animation/keyframing.c
+++ b/source/blender/editors/animation/keyframing.c
@@ -1096,7 +1096,7 @@ void ANIM_OT_keyframe_insert (wmOperatorType *ot)
/* identifiers */
ot->name= "Insert Keyframe";
ot->idname= "ANIM_OT_keyframe_insert";
- ot->description= "Insert keyframes on the current frame for all properties in the specified Keying Set.";
+ ot->description= "Insert keyframes on the current frame for all properties in the specified Keying Set";
/* callbacks */
ot->exec= insert_key_exec;
@@ -1283,7 +1283,7 @@ void ANIM_OT_keyframe_delete (wmOperatorType *ot)
/* identifiers */
ot->name= "Delete Keyframe";
ot->idname= "ANIM_OT_keyframe_delete";
- ot->description= "Delete keyframes on the current frame for all properties in the specified Keying Set.";
+ ot->description= "Delete keyframes on the current frame for all properties in the specified Keying Set";
/* callbacks */
ot->exec= delete_key_exec;