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:
authorMartin Poirier <theeth@yahoo.com>2005-05-15 09:44:11 +0400
committerMartin Poirier <theeth@yahoo.com>2005-05-15 09:44:11 +0400
commit70c0f60df584240a8286e563402c3bf979ac4042 (patch)
tree54c16b1ea82dc1ee4e2762a55fd25220a250ebc1 /source/blender/src/transform_manipulator.c
parent1533b6fd32005b30de1891be55bd6439733ffc44 (diff)
Fixing bug #2556: http://projects.blender.org/tracker/?func=detail&atid=125&aid=2556&group_id=9
MEMSET was clearing the TransInfo struct after the constraint setup call has been made. Temporary fix until the manipulator transform init is split off, like normal transform.
Diffstat (limited to 'source/blender/src/transform_manipulator.c')
-rw-r--r--source/blender/src/transform_manipulator.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/transform_manipulator.c b/source/blender/src/transform_manipulator.c
index 09eb88d0e47..c33978b0b66 100644
--- a/source/blender/src/transform_manipulator.c
+++ b/source/blender/src/transform_manipulator.c
@@ -1463,7 +1463,7 @@ int BIF_do_manipulator(ScrArea *sa)
// find the hotspots first test narrow hotspot
val= manipulator_selectbuf(sa, 0.5f*(float)U.tw_hotspot);
if(val) {
-
+ checkFirstTime(); // TEMPORARY, check this before doing any transform call.
// drawflags still global, for drawing call above
drawflags= manipulator_selectbuf(sa, 0.2f*(float)U.tw_hotspot);
if(drawflags==0) drawflags= val;