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>2015-03-03 12:44:14 +0300
committerBastien Montagne <montagne29@wanadoo.fr>2015-03-03 12:44:14 +0300
commitf2bc3dd67806e0757a8e952516337b37ee987f19 (patch)
treeff7d3b420a3d318d1cf2fc53ff4584a93b940fc0 /source/blender/editors/space_action
parent82cafcfdb7cf6f32b2734ce789947d1b84e0d3cc (diff)
Grrr, missed those ones in previous commit!
Diffstat (limited to 'source/blender/editors/space_action')
-rw-r--r--source/blender/editors/space_action/action_edit.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index 7f8711c415e..76c955d8bca 100644
--- a/source/blender/editors/space_action/action_edit.c
+++ b/source/blender/editors/space_action/action_edit.c
@@ -360,7 +360,7 @@ static int action_stash_exec(bContext *C, wmOperator *op)
/* don't do anything if this action is empty... */
if (action_has_motion(adt->action) == 0) {
/* action may not be suitable... */
- BKE_report(op->reports, RPT_WARNING, "Action needs have at least a keyframe or some FModifiers");
+ BKE_report(op->reports, RPT_WARNING, "Action must have at least one keyframe or F-Modifier");
return OPERATOR_CANCELLED;
}
else {
@@ -446,7 +446,7 @@ static int action_stash_create_exec(bContext *C, wmOperator *op)
/* Perform stashing operation */
if (action_has_motion(adt->action) == 0) {
/* don't do anything if this action is empty... */
- BKE_report(op->reports, RPT_WARNING, "Action needs have at least a keyframe or some FModifiers");
+ BKE_report(op->reports, RPT_WARNING, "Action must have at least one keyframe or F-Modifier");
return OPERATOR_CANCELLED;
}
else {