NLA - Adding new actionclip strips no longer appends "Act: " to the

start of the names. It should be clear enough what they are without
this.
This commit is contained in:
Joshua Leung 2011-07-08 03:31:40 +00:00
parent 074ac7c09b
commit 30d41ac9cb

@ -1242,7 +1242,7 @@ void BKE_nlastrip_validate_name (AnimData *adt, NlaStrip *strip)
if (strip->name[0]==0) {
switch (strip->type) {
case NLASTRIP_TYPE_CLIP: /* act-clip */
sprintf(strip->name, "Act: %s", (strip->act)?(strip->act->id.name+2):("<None>"));
sprintf(strip->name, "%s", (strip->act)?(strip->act->id.name+2):("<No Action>"));
break;
case NLASTRIP_TYPE_TRANSITION: /* transition */
sprintf(strip->name, "Transition");