From f2bc3dd67806e0757a8e952516337b37ee987f19 Mon Sep 17 00:00:00 2001 From: Bastien Montagne Date: Tue, 3 Mar 2015 10:44:14 +0100 Subject: Grrr, missed those ones in previous commit! --- source/blender/editors/space_action/action_edit.c | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'source/blender/editors/space_action') 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 { -- cgit v1.2.3