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>2010-09-30 16:42:45 +0400
committerJoshua Leung <aligorith@gmail.com>2010-09-30 16:42:45 +0400
commitb3c8efb3ef57d176222a4af63e91a729d902af22 (patch)
tree3dad8c2d00b748fabd6d3a9ec996796b696b24d1 /release
parent0dcf67a83a03d01fd9a68044c280925fc4b96521 (diff)
Action/Shapekey Editor Bugfixes:
* Shapekey editor now shows ID-box for showing and editing the action assigned here. This should help alleviate the misconceptions arising to #23823, where user tries to load shapekey action into Action Editor (context there is ob-action only). There are still a few minor update bugs that I still need to fix here (i.e. post keyframing) though. Those shouldn't take too long I think. * Changing the action used in the Action Editor properly decrements the user counts now. This solves the bug where you could get actions with a high usercount, but not that many actual users.
Diffstat (limited to 'release')
-rw-r--r--release/scripts/ui/space_dopesheet.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/release/scripts/ui/space_dopesheet.py b/release/scripts/ui/space_dopesheet.py
index 19f64268481..c9209791289 100644
--- a/release/scripts/ui/space_dopesheet.py
+++ b/release/scripts/ui/space_dopesheet.py
@@ -100,7 +100,7 @@ class DOPESHEET_HT_header(bpy.types.Header):
if st.mode == 'DOPESHEET':
dopesheet_filter(layout, context)
- elif st.mode == 'ACTION':
+ elif st.mode in ('ACTION','SHAPEKEY'):
layout.template_ID(st, "action", new="action.new")
if st.mode != 'GPENCIL':