Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoshua Leung <aligorith@gmail.com>2011-01-12 04:36:12 +0300
committerJoshua Leung <aligorith@gmail.com>2011-01-12 04:36:12 +0300
commitbbdf47aa0bd964be143ae03fb488ce13fa2228bd (patch)
tree1ae70ae0506cec05957187ddeb95d3c6a99e3ba9 /source/blender/blenkernel/intern/nla.c
parent610a759ecc6e1070eb5e8b4fb5ae63d01d645554 (diff)
Patch [#24808] B-Bone display size
Submitted by Dan Eicher (dna) Adds the ability to resize b-bones (ctrl+alt+S) using the python api Bone.bbone_x Bone.bbone_z
Diffstat (limited to 'source/blender/blenkernel/intern/nla.c')
-rw-r--r--source/blender/blenkernel/intern/nla.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/blenkernel/intern/nla.c b/source/blender/blenkernel/intern/nla.c
index 72466261e14..595614ef1e7 100644
--- a/source/blender/blenkernel/intern/nla.c
+++ b/source/blender/blenkernel/intern/nla.c
@@ -1210,13 +1210,13 @@ void BKE_nlastrip_validate_fcurves (NlaStrip *strip)
}
}
+/* Sanity Validation ------------------------------------ */
+
static int nla_editbone_name_check(void *arg, const char *name)
{
return BLI_ghash_haskey((GHash *)arg, (void *)name);
}
-/* Sanity Validation ------------------------------------ */
-
/* Find (and set) a unique name for a strip from the whole AnimData block
* Uses a similar method to the BLI method, but is implemented differently
* as we need to ensure that the name is unique over several lists of tracks,