Bugfix #17627: Autokeyframe for Visual keying
Several months old typo! 'Visual keying' was not working for autokeyframing, as the test for it didn't even work.
This commit is contained in:
@@ -292,7 +292,7 @@ extern UserDef U; /* from usiblender.c !!!! */
|
||||
/* Auto-Keying macros */
|
||||
#define IS_AUTOKEY_ON (U.autokey_mode & AUTOKEY_ON)
|
||||
#define IS_AUTOKEY_MODE(mode) (U.autokey_mode == AUTOKEY_MODE_##mode)
|
||||
#define IS_AUTOKEY_FLAG(flag) (U.autokey_flag == AUTOKEY_FLAG_##flag)
|
||||
#define IS_AUTOKEY_FLAG(flag) (U.autokey_flag & AUTOKEY_FLAG_##flag)
|
||||
|
||||
/* transopts */
|
||||
#define USER_TR_TOOLTIPS (1 << 0)
|
||||
|
||||
Reference in New Issue
Block a user