Two little issues for Timeline window;
- Using Arrowkeys to change frames didn't give proper redraw - Option "Record" now tied to the User-preset "Auto key insert". It is no user preset anymore even, I thought to leave a button in the User- presets for the time being though...
This commit is contained in:
@@ -1846,7 +1846,7 @@ void special_aftertrans_update(char mode, int flip, short canceled, int keyflags
|
||||
*/
|
||||
clear_bone_nocalc_ob(G.obpose);
|
||||
|
||||
if (U.uiflag & USER_KEYINSERTACT && !canceled){
|
||||
if ((G.flags & G_RECORDKEYS) && !canceled){
|
||||
act=G.obpose->action;
|
||||
pose=G.obpose->pose;
|
||||
|
||||
@@ -1954,7 +1954,7 @@ void special_aftertrans_update(char mode, int flip, short canceled, int keyflags
|
||||
where_is_object(ob); /* always do, for track etc. */
|
||||
|
||||
/* Set autokey if necessary */
|
||||
if ((U.uiflag & USER_KEYINSERTOBJ) && (!canceled) && (base->flag & SELECT)){
|
||||
if ((G.flags & G_RECORDKEYS) && (!canceled) && (base->flag & SELECT)){
|
||||
if (keyflags){
|
||||
insertkey(&base->object->id, OB_ROT_X);
|
||||
insertkey(&base->object->id, OB_ROT_Y);
|
||||
|
||||
Reference in New Issue
Block a user