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:
authorCampbell Barton <ideasman42@gmail.com>2014-02-12 09:51:53 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-02-12 14:05:24 +0400
commit7bc577e9f7ec8d3c20eabce1832be7ed463100c6 (patch)
tree4a32c5699a3824d33f11a5f09f0df3e9670c503c /source/blender/editors/space_view3d/view3d_walk.c
parentbd89528a5e159349003b90ec9f9a2460d0b45227 (diff)
View3d Walk: enable rotation for ndof by default
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_walk.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_walk.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/space_view3d/view3d_walk.c b/source/blender/editors/space_view3d/view3d_walk.c
index 218302be168..20f635d6c68 100644
--- a/source/blender/editors/space_view3d/view3d_walk.c
+++ b/source/blender/editors/space_view3d/view3d_walk.c
@@ -1208,7 +1208,7 @@ static int walkApply_ndof(bContext *C, WalkInfo *walk)
bool do_translate = (flag & (NDOF_SHOULD_PAN | NDOF_SHOULD_ZOOM)) != 0;
#endif
- bool do_rotate = false;
+ bool do_rotate = true;
bool do_translate = true;
float view_inv[4];