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:
Diffstat (limited to 'source/blender/src/space.c')
-rw-r--r--source/blender/src/space.c11
1 files changed, 8 insertions, 3 deletions
diff --git a/source/blender/src/space.c b/source/blender/src/space.c
index 6d963870669..ceb05cbfb68 100644
--- a/source/blender/src/space.c
+++ b/source/blender/src/space.c
@@ -1756,12 +1756,17 @@ static void winqreadview3dspace(ScrArea *sa, void *spacedata, BWinEvent *evt)
case RIGHTCTRLKEY:
case LEFTCTRLKEY:
if(v3d->twflag & V3D_USE_MANIPULATOR) {
- if(v3d->twtype & V3D_MANIPULATOR_TRANSLATE)
+ if(v3d->twtype & V3D_MANIPULATOR_SCALE) {
+ if(v3d->twtype== V3D_MANIPULATOR_SCALE)
+ v3d->twtype= V3D_MANIPULATOR_TRANSLATE|V3D_MANIPULATOR_ROTATE|V3D_MANIPULATOR_SCALE;
+ else
+ v3d->twtype= V3D_MANIPULATOR_TRANSLATE;
+ }
+ else if(v3d->twtype & V3D_MANIPULATOR_TRANSLATE)
v3d->twtype= V3D_MANIPULATOR_ROTATE;
else if(v3d->twtype & V3D_MANIPULATOR_ROTATE)
v3d->twtype= V3D_MANIPULATOR_SCALE;
- else if(v3d->twtype & V3D_MANIPULATOR_SCALE)
- v3d->twtype= V3D_MANIPULATOR_TRANSLATE;
+
doredraw= 1;
}
break;