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>2015-11-07 09:31:28 +0300
committerCampbell Barton <ideasman42@gmail.com>2015-11-07 09:31:28 +0300
commitdcc41c4f78ced4a377bdc7f9b6661ac085365f0e (patch)
treeb9f28835608b3b0210cd73c5aace992ba8edf19d /source/blender/editors/interface/interface_align.c
parent02f3cebf6e4cc13f58b5198988672e99b8aac6fc (diff)
Cleanup: spelling, headers
Diffstat (limited to 'source/blender/editors/interface/interface_align.c')
-rw-r--r--source/blender/editors/interface/interface_align.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/source/blender/editors/interface/interface_align.c b/source/blender/editors/interface/interface_align.c
index 4c0c12e21f5..753e3c46335 100644
--- a/source/blender/editors/interface/interface_align.c
+++ b/source/blender/editors/interface/interface_align.c
@@ -156,7 +156,7 @@ static void block_align_proximity_compute(ButAlign *butal, ButAlign *butal_other
if (delta <= butal->dists[side]) {
/* We found a closer neighbor.
* If both buttons are alignable, we set them as each other neighbors.
- * Else, we have an unalignable one, we need to reset the other's matching neighbor to NULL
+ * Else, we have an unalignable one, we need to reset the others matching neighbor to NULL
* if its 'proximity distance' is really lower with current one. */
if (butal_can_align && butal_other_can_align) {
butal->neighbors[side] = butal_other;
@@ -238,8 +238,8 @@ static void block_align_stitch_neighbors(
/* We have to check stitching flags on both sides of the stitching, since we only clear one of them flags to break
* any future loop on same 'columns/side' case.
- * Also, if butal is spanning over several rows or columns of neighbors, it may have both of its stiching flags
- * set, but would not be the case of its immediate neighbor! */
+ * Also, if butal is spanning over several rows or columns of neighbors, it may have both of its stitching flags
+ * set, but would not be the case of its immediate neighbor! */
while ((butal->flags[side] & stitch_s1) &&
(butal = butal->neighbors[side_s1]) &&
(butal->flags[side] & stitch_s2))