[Bf-blender-cvs] [f2bc3dd] master: Grrr, missed those ones in previous commit!

Bastien Montagne noreply at git.blender.org
Tue Mar 3 10:44:33 CET 2015


Commit: f2bc3dd67806e0757a8e952516337b37ee987f19
Author: Bastien Montagne
Date:   Tue Mar 3 10:44:14 2015 +0100
Branches: master
https://developer.blender.org/rBf2bc3dd67806e0757a8e952516337b37ee987f19

Grrr, missed those ones in previous commit!

===================================================================

M	source/blender/editors/space_action/action_edit.c

===================================================================

diff --git a/source/blender/editors/space_action/action_edit.c b/source/blender/editors/space_action/action_edit.c
index 7f8711c..76c955d 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 {




More information about the Bf-blender-cvs mailing list