A few cleanups in keyframing.c

- Added missing update calls for buttons window keyframing. This should get rid of all those sporadic update problems (using a different keyingset would result in no curve being added)
This commit is contained in:
Joshua Leung 2008-09-30 12:03:31 +00:00
parent 80a4bbf473
commit 0f5dc86049

@ -735,8 +735,6 @@ short insertkey (ID *id, int blocktype, char *actname, char *constname, int adrc
if (icu) { if (icu) {
float cfra = frame_to_float(CFRA); float cfra = frame_to_float(CFRA);
float curval= 0.0f; float curval= 0.0f;
void *poin = NULL;
int vartype;
/* apply special time tweaking */ /* apply special time tweaking */
if (GS(id->name) == ID_OB) { if (GS(id->name) == ID_OB) {
@ -753,13 +751,6 @@ short insertkey (ID *id, int blocktype, char *actname, char *constname, int adrc
} }
} }
/* get pointer to data to read from */
poin= get_context_ipo_poin(id, blocktype, actname, constname, icu, &vartype);
if (poin == NULL) {
printf("Insert Key: No pointer to variable obtained \n");
return 0;
}
/* obtain value to give keyframe */ /* obtain value to give keyframe */
if ( (flag & INSERTKEY_MATRIX) && if ( (flag & INSERTKEY_MATRIX) &&
(visualkey_can_use(id, blocktype, actname, constname, adrcode)) ) (visualkey_can_use(id, blocktype, actname, constname, adrcode)) )
@ -771,6 +762,16 @@ short insertkey (ID *id, int blocktype, char *actname, char *constname, int adrc
curval= visualkey_get_value(id, blocktype, actname, constname, adrcode, icu); curval= visualkey_get_value(id, blocktype, actname, constname, adrcode, icu);
} }
else { else {
void *poin;
int vartype;
/* get pointer to data to read from */
poin = get_context_ipo_poin(id, blocktype, actname, constname, icu, &vartype);
if (poin == NULL) {
printf("Insert Key: No pointer to variable obtained \n");
return 0;
}
/* use kt's read_poin function to extract value (kt->read_poin should /* use kt's read_poin function to extract value (kt->read_poin should
* exist in all cases, but it never hurts to check) * exist in all cases, but it never hurts to check)
*/ */
@ -1589,6 +1590,15 @@ static void commonkey_context_refresh (void)
allqueue(REDRAWMARKER, 0); allqueue(REDRAWMARKER, 0);
} }
break; break;
/* buttons window */
case SPACE_BUTS:
{
allspace(REMAKEIPO, 0);
allqueue(REDRAWVIEW3D, 0);
allqueue(REDRAWMARKER, 0);
}
break;
} }
} }