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-03-21 12:46:37 +0300
committerJoshua Leung <aligorith@gmail.com>2008-03-21 12:46:37 +0300
commit9e9d88d7fcd7ae1c4204b1b7ce1e9f2e1a9c1502 (patch)
tree8655e237ac3f7c9a72582064bdf1d273e3054a2d /source/blender/src/drawipo.c
parente78d2b360ad34d831ef13a11a3ecf5411b83ee77 (diff)
Two changes:
* Attempted fix for bug #8599c (inserting new keyframes mucked up existing IPO-Keys). Now it calls make_ipokey() regardless of whether they exist already (if ipokeys are being shown in the IPO-Editor). This might be a bit slower on some files. * 'Auto-Sync PoseLib' button is now only visible when there's a PoseLib
Diffstat (limited to 'source/blender/src/drawipo.c')
-rw-r--r--source/blender/src/drawipo.c5
1 files changed, 3 insertions, 2 deletions
diff --git a/source/blender/src/drawipo.c b/source/blender/src/drawipo.c
index c94df84c7f7..e13d0f4d0cd 100644
--- a/source/blender/src/drawipo.c
+++ b/source/blender/src/drawipo.c
@@ -2220,8 +2220,9 @@ void drawipospace(ScrArea *sa, void *spacedata)
/* ipokeys */
if(sipo->showkey) {
- if(sipo->ipokey.first==0) make_ipokey();
- else update_ipokey_val();
+ //if(sipo->ipokey.first==0) make_ipokey();
+ //else update_ipokey_val();
+ make_ipokey();
draw_ipokey(sipo);
}