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>2012-03-04 08:35:12 +0400
committerCampbell Barton <ideasman42@gmail.com>2012-03-04 08:35:12 +0400
commitf6ae27daef0e0a27e0c14ef3412161eec229c539 (patch)
tree00001b4c738d9dbba104a49de15d566dfe82b345 /source/blender/editors/space_view3d/view3d_fly.c
parent4f2976941fd7284c85e89c1de5038805e62a5c99 (diff)
style cleanup - comment spelling + translate some dutch.
Diffstat (limited to 'source/blender/editors/space_view3d/view3d_fly.c')
-rw-r--r--source/blender/editors/space_view3d/view3d_fly.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/source/blender/editors/space_view3d/view3d_fly.c b/source/blender/editors/space_view3d/view3d_fly.c
index 0ae2ae0a9d1..3218daf65c7 100644
--- a/source/blender/editors/space_view3d/view3d_fly.c
+++ b/source/blender/editors/space_view3d/view3d_fly.c
@@ -184,7 +184,7 @@ typedef struct FlyInfo {
/* relative view axis locking - xlock, zlock
* 0) disabled
- * 1) enabled but not checking because mouse hasnt moved outside the margin since locking was checked an not needed
+ * 1) enabled but not checking because mouse hasn't moved outside the margin since locking was checked an not needed
* when the mouse moves, locking is set to 2 so checks are done.
* 2) mouse moved and checking needed, if no view altering is donem its changed back to 1 */
short xlock, zlock;
@@ -583,7 +583,7 @@ static void flyEvent(FlyInfo *fly, wmEvent *event)
/* implement WASD keys */
case FLY_MODAL_DIR_FORWARD:
if (fly->speed < 0.0f) fly->speed= -fly->speed; /* flip speed rather than stopping, game like motion */
- else if (fly->axis==2) fly->speed += fly->grid; /* increse like mousewheel if were already
+ else if (fly->axis==2) fly->speed += fly->grid; /* increase like mousewheel if were already
* moving in that difection*/
fly->axis= 2;
break;