Commit: b6fda7fa43d619f2978e0b1e8d874642935a0a67
Author: Joshua Leung
Date:   Sat Aug 12 01:40:28 2017 +1200
Branches: master
https://developer.blender.org/rBb6fda7fa43d619f2978e0b1e8d874642935a0a67

Fix T52327: Entering/Exiting NLA Tweakmode disables Scene -> Only Keyframes 
from Selected Channels

The tweakmode flag and the selected-channels flag accidentally
used the same value, due to confusion over where these flags were
supposed to be set. The selected-channels flag has now been moved
to use a different value, so that there shouldn't be any further
conflicts.

To be ported to 2.79.

===================================================================

M       source/blender/makesdna/DNA_scene_types.h

===================================================================

diff --git a/source/blender/makesdna/DNA_scene_types.h 
b/source/blender/makesdna/DNA_scene_types.h
index c2711c465e1..cc1991cb2db 100644
--- a/source/blender/makesdna/DNA_scene_types.h
+++ b/source/blender/makesdna/DNA_scene_types.h
@@ -1750,8 +1750,7 @@ typedef struct Scene {
        /* use preview range */
 #define SCER_PRV_RANGE (1<<0)
 #define SCER_LOCK_FRAME_SELECTION      (1<<1)
-       /* timeline/keyframe jumping - only selected items (on by default) */
-#define SCE_KEYS_NO_SELONLY    (1<<2)
+       /* show/use subframes (for checking motion blur) */
 #define SCER_SHOW_SUBFRAME     (1<<3)
 
 /* mode (int now) */
@@ -2085,6 +2084,7 @@ typedef enum eVGroupSelect {
 #define SCE_DS_COLLAPSED               (1<<1)
 #define SCE_NLA_EDIT_ON                        (1<<2)
 #define SCE_FRAME_DROP                 (1<<3)
+#define SCE_KEYS_NO_SELONLY        (1<<4)
 
 
        /* return flag BKE_scene_base_iter_next functions */

_______________________________________________
Bf-blender-cvs mailing list
Bf-blender-cvs@blender.org
https://lists.blender.org/mailman/listinfo/bf-blender-cvs

Reply via email to