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-03-25 03:10:00 +0400
committerCampbell Barton <ideasman42@gmail.com>2014-03-25 03:10:00 +0400
commitf0ca40f9c1cc17e0345b06b77ad0c0fad6880242 (patch)
treedf2d8cc7037bc7fdcd5697d8392f3e41a08f46ca /source/blender/editors/uvedit/uvedit_ops.c
parent05deec3204a91984180a4458c956f490dc10d260 (diff)
Code cleanup: function calls
Diffstat (limited to 'source/blender/editors/uvedit/uvedit_ops.c')
-rw-r--r--source/blender/editors/uvedit/uvedit_ops.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/source/blender/editors/uvedit/uvedit_ops.c b/source/blender/editors/uvedit/uvedit_ops.c
index fe398c00b6a..8fc3e7952ca 100644
--- a/source/blender/editors/uvedit/uvedit_ops.c
+++ b/source/blender/editors/uvedit/uvedit_ops.c
@@ -3250,7 +3250,7 @@ static bool uv_snap_uvs_to_cursor(Scene *scene, Image *ima, Object *obedit, cons
BM_ITER_ELEM (l, &liter, efa, BM_LOOPS_OF_FACE) {
if (uvedit_uv_select_test(scene, l, cd_loop_uv_offset)) {
luv = BM_ELEM_CD_GET_VOID_P(l, cd_loop_uv_offset);
- copy_v2_v2 (luv->uv, cursor);
+ copy_v2_v2(luv->uv, cursor);
changed = true;
}
}