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
path: root/source
diff options
context:
space:
mode:
authorKent Mein <mein@cs.umn.edu>2003-02-21 21:42:56 +0300
committerKent Mein <mein@cs.umn.edu>2003-02-21 21:42:56 +0300
commit40d710f35d0ead5a2230bdf65810495162ee6e83 (patch)
treebbf06de1e6405ed6e24abb36033a89fdb1a0de62 /source
parent4afacdd9c3fdf20a9ef39f7c0f2ff203868e9179 (diff)
zel365 showed me this bug with deleting nla keys...
If I had to guess REMAKEIPO is kind of miss named. since what it does it free up memory it almost looks like it should be a part of REMAKEALLIPO we both felt a little overwhelmed by the code though and opted for just calling both of them in delete_nlachannel_keys I also added in allqueue (REDRAWVIEW3D, 0); since things could probably change around since your recalcing the ipo's... Kent
Diffstat (limited to 'source')
-rw-r--r--source/blender/src/editnla.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/editnla.c b/source/blender/src/editnla.c
index d12ce9ca71e..45aef9295ba 100644
--- a/source/blender/src/editnla.c
+++ b/source/blender/src/editnla.c
@@ -979,6 +979,8 @@ static void delete_nlachannel_keys(void)
}
allspace(REMAKEALLIPO, 0);
+ allspace(REMAKEIPO,0);
+ allqueue (REDRAWVIEW3D, 0);
allqueue(REDRAWNLA, 0);
allqueue(REDRAWIPO, 0);
}