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>2004-10-07 01:48:29 +0400
committerTon Roosendaal <ton@blender.org>2004-10-07 01:48:29 +0400
commitb94b922d238989b03873cc9927593ca9c0ae3334 (patch)
tree7f2b42d05446ac20fc2598fd9fb9b2e167caf5f6 /source/blender/src/poseobject.c
parent25c52c19e94c227764ae4037c2e643af250d583d (diff)
- Fix: enter/exit posemode used wrong pointer, could crash
- enter/exit posemode now updates outliner view too - New: outliner option "Show same type". Shows only object types as current active one. Nice to browse all lamps, mballs, armatures, etc
Diffstat (limited to 'source/blender/src/poseobject.c')
-rw-r--r--source/blender/src/poseobject.c2
1 files changed, 2 insertions, 0 deletions
diff --git a/source/blender/src/poseobject.c b/source/blender/src/poseobject.c
index 3c3d4ded6c8..28cd9c123ce 100644
--- a/source/blender/src/poseobject.c
+++ b/source/blender/src/poseobject.c
@@ -125,6 +125,7 @@ void enter_posemode(void)
/* make_poseMesh(); */
allqueue(REDRAWHEADERS, 0);
allqueue(REDRAWBUTSALL, 0);
+ allqueue(REDRAWOOPS, 0);
allqueue(REDRAWVIEW3D, 0);
break;
default:
@@ -219,6 +220,7 @@ void exit_posemode (int freedata)
countall();
allqueue(REDRAWVIEW3D, 0);
+ allqueue(REDRAWOOPS, 0);
allqueue(REDRAWHEADERS, 0);
allqueue(REDRAWBUTSALL, 0);
}