[Bf-blender-cvs] [e42c662723a] master: Cleanup: Fix format on previous commit

Chris Blackbourn noreply at git.blender.org
Tue Jun 21 07:38:07 CEST 2022


Commit: e42c662723a81171276e349e7b1cb3c5bf465162
Author: Chris Blackbourn
Date:   Tue Jun 21 17:37:15 2022 +1200
Branches: master
https://developer.blender.org/rBe42c662723a81171276e349e7b1cb3c5bf465162

Cleanup: Fix format on previous commit

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

M	source/blender/editors/uvedit/uvedit_select.c

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

diff --git a/source/blender/editors/uvedit/uvedit_select.c b/source/blender/editors/uvedit/uvedit_select.c
index 9080da9e1ed..8dcf2ceb679 100644
--- a/source/blender/editors/uvedit/uvedit_select.c
+++ b/source/blender/editors/uvedit/uvedit_select.c
@@ -4446,10 +4446,10 @@ void UV_OT_select_overlap(wmOperatorType *ot)
  * \{ */
 
 static float get_uv_vert_needle(const eUVSelectSimilar type,
-                             BMVert *vert,
-                             const float ob_m3[3][3],
-                             MLoopUV *luv,
-                             const int cd_loop_uv_offset)
+                                BMVert *vert,
+                                const float ob_m3[3][3],
+                                MLoopUV *luv,
+                                const int cd_loop_uv_offset)
 {
   float result = 0.0f;
   switch (type) {
@@ -4485,11 +4485,11 @@ static float get_uv_vert_needle(const eUVSelectSimilar type,
 }
 
 static float get_uv_edge_needle(const eUVSelectSimilar type,
-                             BMEdge *edge,
-                             const float ob_m3[3][3],
-                             MLoopUV *luv_a,
-                             MLoopUV *luv_b,
-                             const int cd_loop_uv_offset)
+                                BMEdge *edge,
+                                const float ob_m3[3][3],
+                                MLoopUV *luv_a,
+                                MLoopUV *luv_b,
+                                const int cd_loop_uv_offset)
 {
   float result = 0.0f;
   switch (type) {
@@ -4535,9 +4535,9 @@ static float get_uv_edge_needle(const eUVSelectSimilar type,
 }
 
 static float get_uv_face_needle(const eUVSelectSimilar type,
-                             BMFace *face,
-                             const float ob_m3[3][3],
-                             const int cd_loop_uv_offset)
+                                BMFace *face,
+                                const float ob_m3[3][3],
+                                const int cd_loop_uv_offset)
 {
   float result = 0.0f;
   switch (type) {
@@ -4924,8 +4924,7 @@ static int uv_select_similar_exec(bContext *C, wmOperator *op)
   return uv_select_similar_vert_exec(C, op);
 }
 
-static EnumPropertyItem prop_vert_similar_types[] = {
-    {UV_SSIM_PIN, "PIN", 0, "Pinned", ""}, {0}};
+static EnumPropertyItem prop_vert_similar_types[] = {{UV_SSIM_PIN, "PIN", 0, "Pinned", ""}, {0}};
 
 static EnumPropertyItem prop_edge_similar_types[] = {
     {UV_SSIM_LENGTH_UV, "LENGTH", 0, "Length", ""},



More information about the Bf-blender-cvs mailing list