[Bf-blender-cvs] [46d0a7fb7ec] usd-importer-T81257-merge: Undid format fix.

makowalski noreply at git.blender.org
Mon May 10 05:14:43 CEST 2021


Commit: 46d0a7fb7ecef41a5b69ee42ae42e08b571e21e4
Author: makowalski
Date:   Sun May 9 18:01:42 2021 -0400
Branches: usd-importer-T81257-merge
https://developer.blender.org/rB46d0a7fb7ecef41a5b69ee42ae42e08b571e21e4

Undid format fix.

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

M	source/blender/makesdna/DNA_mesh_types.h

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

diff --git a/source/blender/makesdna/DNA_mesh_types.h b/source/blender/makesdna/DNA_mesh_types.h
index 3eb5920dfe6..23323a36250 100644
--- a/source/blender/makesdna/DNA_mesh_types.h
+++ b/source/blender/makesdna/DNA_mesh_types.h
@@ -279,9 +279,9 @@ enum {
 /* We cant have both flags enabled at once,
  * flags defined in DNA_scene_types.h */
 #define ME_EDIT_PAINT_SEL_MODE(_me) \
-  (((_me)->editflag & ME_EDIT_PAINT_FACE_SEL) ? \
-       SCE_SELECT_FACE : \
-       ((_me)->editflag & ME_EDIT_PAINT_VERT_SEL) ? SCE_SELECT_VERTEX : 0)
+  (((_me)->editflag & ME_EDIT_PAINT_FACE_SEL) ? SCE_SELECT_FACE : \
+   ((_me)->editflag & ME_EDIT_PAINT_VERT_SEL) ? SCE_SELECT_VERTEX : \
+                                                0)
 
 /* me->flag */
 enum {



More information about the Bf-blender-cvs mailing list