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>2006-06-29 02:13:24 +0400
committerCampbell Barton <ideasman42@gmail.com>2006-06-29 02:13:24 +0400
commit54694b0e642dd0de6cdc2ec2c258a2975bde93d4 (patch)
treeb381ada2ac6eddaacb264791bbabad635fe587d9 /source/blender
parenta9b19c0ed14791f85fa74d901d650d4b693762a8 (diff)
slight change to the way the shift key works in fly mode.
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/src/editview.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/src/editview.c b/source/blender/src/editview.c
index 9011736544c..c887d54d452 100644
--- a/source/blender/src/editview.c
+++ b/source/blender/src/editview.c
@@ -2210,7 +2210,7 @@ void fly(void)
/* Scale the time to use shift to scale the speed down- just like
shift slows many other areas of blender down */
if (G.qual & LR_SHIFTKEY)
- time_redraw= time_redraw*0.1;
+ speed= speed * (1-time_redraw_clamped);
Mat3CpyMat4(mat, G.vd->viewinv);
if (apply_rotation) {