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:
authorTon Roosendaal <ton@blender.org>2007-01-22 15:21:41 +0300
committerTon Roosendaal <ton@blender.org>2007-01-22 15:21:41 +0300
commita0cd868f14196899785761f27942adb692c6e5c6 (patch)
tree5314cba9a5ea8fbdaea2afb5388f882ef0fbd610 /source/blender/src/interface.c
parenta03c8ba8a0c22de46e1b85c29f5df3c30e865f3e (diff)
Bugfix #5784
Buttons: Missing linked-library lock reset in code could invoke error menu Bugfix #5770 Renamed option "Clear Pose" to "Clear User Transform" to indicate that this differs from rest-pose. This option clears all Pose channel transforms, but leaves Action values in pose unchanged. Means that when you do this, an 'insert key' won't change the animation. Own fix: Missing test for NULL pointer could crash Image Properties panel for linked Image data.
Diffstat (limited to 'source/blender/src/interface.c')
-rw-r--r--source/blender/src/interface.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/source/blender/src/interface.c b/source/blender/src/interface.c
index 6e9dcf7b9a0..f05a675dab5 100644
--- a/source/blender/src/interface.c
+++ b/source/blender/src/interface.c
@@ -5359,7 +5359,8 @@ uiBlock *uiNewBlock(ListBase *lb, char *name, short dt, short font, short win)
uiSetCurFont(block, font);
UIbuttip= NULL;
-
+ UIlock= 0;
+
return block;
}