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:
authorBrecht Van Lommel <brecht@blender.org>2020-03-19 22:33:23 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2020-03-19 23:55:17 +0300
commita1322d7c9546dc78204c0ba9980c1e3094149e7a (patch)
tree3444928d197ebb9aacca58124e67d2efc637abb5 /source/blender/editors/space_view3d
parent83f171b6269fa5f1491c8517882984801e6b49cc (diff)
Cleanup: fix typos in comments
Contributed by luzpaz. Differential Revision: https://developer.blender.org/D7133
Diffstat (limited to 'source/blender/editors/space_view3d')
-rw-r--r--source/blender/editors/space_view3d/view3d_camera_control.c2
-rw-r--r--source/blender/editors/space_view3d/view3d_edit.c2
-rw-r--r--source/blender/editors/space_view3d/view3d_fly.c2
3 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/space_view3d/view3d_camera_control.c b/source/blender/editors/space_view3d/view3d_camera_control.c
index a6c1d1bbc33..daa3f641404 100644
--- a/source/blender/editors/space_view3d/view3d_camera_control.c
+++ b/source/blender/editors/space_view3d/view3d_camera_control.c
@@ -89,7 +89,7 @@ typedef struct View3DCameraControl {
/* backup the views quat in case the user cancels flying in non camera mode. */
float rot_backup[4];
- /* remember if were ortho or not, only used for restoring the view if it was a ortho view */
+ /* remember if we're ortho or not, only used for restoring the view if it was a ortho view */
char persp_backup;
/* are we flying an ortho camera in perspective view,
diff --git a/source/blender/editors/space_view3d/view3d_edit.c b/source/blender/editors/space_view3d/view3d_edit.c
index 2aff5482b1c..67dacca85ba 100644
--- a/source/blender/editors/space_view3d/view3d_edit.c
+++ b/source/blender/editors/space_view3d/view3d_edit.c
@@ -236,7 +236,7 @@ typedef struct ViewOpsData {
} ViewOpsData;
/**
- * Size of the sphere being dragged for trackball rotation withing the view bounds.
+ * Size of the sphere being dragged for trackball rotation within the view bounds.
* also affects speed (smaller is faster).
*/
#define TRACKBALLSIZE (1.1f)
diff --git a/source/blender/editors/space_view3d/view3d_fly.c b/source/blender/editors/space_view3d/view3d_fly.c
index 8291d93ee13..563e1afa67e 100644
--- a/source/blender/editors/space_view3d/view3d_fly.c
+++ b/source/blender/editors/space_view3d/view3d_fly.c
@@ -593,7 +593,7 @@ static void flyEvent(FlyInfo *fly, const wmEvent *event)
}
else {
/* flip speed rather than stopping, game like motion,
- * else increase like mousewheel if were already moving in that direction */
+ * else increase like mousewheel if we're already moving in that direction */
if (fly->speed < 0.0f) {
fly->speed = -fly->speed;
}