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>2008-02-07 02:27:03 +0300
committerJoshua Leung <aligorith@gmail.com>2008-02-07 02:27:03 +0300
commitbb7690c7291dcd04c07db51ae776f743559905c6 (patch)
tree93900097ea33f67d48d4acfa84fe3a716faec66b /source/blender/src/editaction.c
parenteb281bff39d255011e82ae8cbf8129eed811d7ec (diff)
== Action Editor - Bugfixes ==
* With "AfterTrans Delete Duplicates" and NLA-scaling on, IPO-curve handles were not updated after the operation. * Sliders drew in the wrong places. Now they are drawn using the Action-Editor api stuff, so they should appear in the right places. I've also tweaked this so that sliders are now shown for ANY selected action channel's ipo-channels and constraint-channels, provided that the channel is in view.
Diffstat (limited to 'source/blender/src/editaction.c')
-rw-r--r--source/blender/src/editaction.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editaction.c b/source/blender/src/editaction.c
index c4c1b079dfe..f52dea06f35 100644
--- a/source/blender/src/editaction.c
+++ b/source/blender/src/editaction.c
@@ -4248,7 +4248,7 @@ void winqreadactionspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
case DELKEY:
case XKEY:
if (okee("Erase selected")) {
- if (mval[0]<NAMEWIDTH)
+ if (mval[0] < NAMEWIDTH)
delete_action_channels();
else
delete_action_keys();