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-03-29 20:12:42 +0400
committerMartin Poirier <theeth@yahoo.com>2005-03-29 20:12:42 +0400
commitda0a55d2b41d563385679d9beb12c26eaf7f1f63 (patch)
treea0483ef48a04410b532dadc64ff0ea09b3fb3449 /source/blender/src/transform.c
parent3ee7a1fa6fca99d48985c9d1056d2ae300598386 (diff)
Tiny error in Jiri's commit. Unselected meta elements needs the quat flag too if they want to rotate using PET.
Diffstat (limited to 'source/blender/src/transform.c')
-rwxr-xr-xsource/blender/src/transform.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/transform.c b/source/blender/src/transform.c
index 990828bdcd4..5ad9ff0df6d 100755
--- a/source/blender/src/transform.c
+++ b/source/blender/src/transform.c
@@ -519,7 +519,7 @@ static void createTransMBallVerts(void)
VECCOPY(td->center, td->loc);
if(ml->flag & SELECT) td->flag= TD_SELECTED | TD_USEQUAT;
- else td->flag= 0;
+ else td->flag= TD_USEQUAT;
Mat3CpyMat3(td->smtx, smtx);
Mat3CpyMat3(td->mtx, mtx);