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>2009-12-23 14:22:30 +0300
committerJoshua Leung <aligorith@gmail.com>2009-12-23 14:22:30 +0300
commitda5025d46d6ba3a8cb723f63de20054de06f285a (patch)
tree6c2300d81d46ddda8b43beb851784ae31707c9a9 /source/blender/makesdna/DNA_action_types.h
parent21e2d9b85a9a1dbd0f0faa6aad61c77ac8c4f48f (diff)
Bugfix #20463: In graph editor bone channels cannot be selected with 'A' or 'B' border select
This bug was caused by my recent commit to get bone select -> selection syncing working. The selection flushing was occurring too readily, blocking any selection tools from having any visible effect. Now this syncing is only triggered when appropriate notifiers+flags have been set.
Diffstat (limited to 'source/blender/makesdna/DNA_action_types.h')
-rw-r--r--source/blender/makesdna/DNA_action_types.h2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/makesdna/DNA_action_types.h b/source/blender/makesdna/DNA_action_types.h
index 0dc24f31a7b..ee6af076f59 100644
--- a/source/blender/makesdna/DNA_action_types.h
+++ b/source/blender/makesdna/DNA_action_types.h
@@ -503,6 +503,8 @@ typedef enum eSAction_Flag {
SACTION_NODRAWGCOLORS = (1<<7),
/* don't draw current frame number beside frame indicator */
SACTION_NODRAWCFRANUM = (1<<8),
+ /* temporary flag to force channel selections to be synced with main */
+ SACTION_TEMP_NEEDCHANSYNC = (1<<9),
} eSAction_Flag;
/* SpaceAction Mode Settings */