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>2007-08-22 14:07:42 +0400
committerJoshua Leung <aligorith@gmail.com>2007-08-22 14:07:42 +0400
commitf237a466c111b439a278ff78a959bc4c63cacfd0 (patch)
tree4455b2cf3e1607d6e2bf30631767c42b1eca0642 /source/blender/src/editaction.c
parent59016f9f5da298568f0d7c1a9af98b03aa6477ad (diff)
Minor Code Cleanup (ShapeKeys):
Added a new API method for ShapeKeys, which is useful for finding a certain KeyBlock from a Key.
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c18
1 files changed, 9 insertions, 9 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index 9ecb958b567..f7a5d5f40d3 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -1652,20 +1652,20 @@ static void clever_keyblock_names (Key *key, short *mval)
* an invalid key number (and we don't deal
* with the speed ipo).
*/
-
+
keynum = get_nearest_key_num(key, mval, &x);
if ( (keynum < 1) || (keynum >= key->totkey) )
return;
-
- kb= key->block.first;
- for (i=0; i<keynum; ++i) kb = kb->next;
-
- if (kb->name[0] == '\0') {
+
+ kb= key_get_keyblock(key, keynum);
+ if (kb == NULL)
+ return;
+
+
+ if (kb->name[0] == '\0')
sprintf(str, "Key %d", keynum);
- }
- else {
+ else
strcpy(str, kb->name);
- }
if ( (kb->slidermin >= kb->slidermax) ) {
kb->slidermin = 0.0;