Changeset View
Changeset View
Standalone View
Standalone View
source/blender/blenkernel/intern/nla.c
| Context not available. | |||||
| nlt = BKE_nlatrack_add(adt, prev_track); | nlt = BKE_nlatrack_add(adt, prev_track); | ||||
| BLI_assert(nlt != NULL); | BLI_assert(nlt != NULL); | ||||
| /* we need to ensure that if there wasn't any previous instance, it must go to tbe bottom of the stack */ | /* we need to ensure that if there wasn't any previous instance, it must go to the bottom of the stack */ | ||||
| if (prev_track == NULL) { | if (prev_track == NULL) { | ||||
| BLI_remlink(&adt->nla_tracks, nlt); | BLI_remlink(&adt->nla_tracks, nlt); | ||||
| BLI_addhead(&adt->nla_tracks, nlt); | BLI_addhead(&adt->nla_tracks, nlt); | ||||
| Context not available. | |||||