[Bf-blender-cvs] SVN commit: /data/svn/bf-blender [21415] branches/soc-2009-aligorith/source /blender/editors/space_nla/nla_edit.c: NLA SoC: Clarifying the error message for adding transitions

Joshua Leung aligorith at gmail.com
Wed Jul 8 01:33:39 CEST 2009


Revision: 21415
          http://projects.blender.org/plugins/scmsvn/viewcvs.php?view=rev&root=bf-blender&revision=21415
Author:   aligorith
Date:     2009-07-08 01:33:39 +0200 (Wed, 08 Jul 2009)

Log Message:
-----------
NLA SoC: Clarifying the error message for adding transitions 

NOTE: transition strips can only be added between two selected action-clips that have a gap (but no other strips) between them, and are in the same track. 

Modified Paths:
--------------
    branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_edit.c

Modified: branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_edit.c
===================================================================
--- branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_edit.c	2009-07-07 19:13:05 UTC (rev 21414)
+++ branches/soc-2009-aligorith/source/blender/editors/space_nla/nla_edit.c	2009-07-07 23:33:39 UTC (rev 21415)
@@ -432,7 +432,7 @@
 		return OPERATOR_FINISHED;
 	}
 	else {
-		BKE_report(op->reports, RPT_ERROR, "Needs at least a pair of adjacent selected strips.");
+		BKE_report(op->reports, RPT_ERROR, "Needs at least a pair of adjacent selected strips with a gap between them.");
 		return OPERATOR_CANCELLED;
 	}
 }





More information about the Bf-blender-cvs mailing list