[Bf-blender-cvs] [e22628c70bf] master: Cleanup: refactoring uvislands to prepare for python api

Chris Blackbourn noreply at git.blender.org
Mon Aug 8 10:01:02 CEST 2022


Commit: e22628c70bf221acf084e20373da9d40ebc2bfa8
Author: Chris Blackbourn
Date:   Mon Aug 8 19:59:33 2022 +1200
Branches: master
https://developer.blender.org/rBe22628c70bf221acf084e20373da9d40ebc2bfa8

Cleanup: refactoring uvislands to prepare for python api

Fix copy+paste bug

===================================================================

M	source/blender/editors/mesh/editmesh_utils.c

===================================================================

diff --git a/source/blender/editors/mesh/editmesh_utils.c b/source/blender/editors/mesh/editmesh_utils.c
index 78390db5349..195a3686b3b 100644
--- a/source/blender/editors/mesh/editmesh_utils.c
+++ b/source/blender/editors/mesh/editmesh_utils.c
@@ -836,7 +836,7 @@ UvElementMap *BM_uv_element_map_create(BMesh *bm,
       UvElement *v = vlist;
       vlist = vlist->next;
       v->next = newvlist;
-      UvElement *newvlist = v;
+      newvlist = v;
 
       luv = BM_ELEM_CD_GET_VOID_P(v->l, cd_loop_uv_offset);
       const float *uv = luv->uv;



More information about the Bf-blender-cvs mailing list