[Bf-blender-cvs] [892c3891ed0] blender-v2.81-release: UI: partial revert of renaming Normal -> Regular

Campbell Barton noreply at git.blender.org
Thu Oct 24 21:03:34 CEST 2019


Commit: 892c3891ed0b3228f556b57047f5789777f4a6f4
Author: Campbell Barton
Date:   Fri Oct 25 06:00:46 2019 +1100
Branches: blender-v2.81-release
https://developer.blender.org/rB892c3891ed0b3228f556b57047f5789777f4a6f4

UI: partial revert of renaming Normal -> Regular

These instances refer to winding/direction.

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

M	source/blender/editors/transform/transform_gizmo_extrude_3d.c
M	source/blender/makesrna/intern/rna_mesh.c

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

diff --git a/source/blender/editors/transform/transform_gizmo_extrude_3d.c b/source/blender/editors/transform/transform_gizmo_extrude_3d.c
index 6ec4112acbb..a327cc941d5 100644
--- a/source/blender/editors/transform/transform_gizmo_extrude_3d.c
+++ b/source/blender/editors/transform/transform_gizmo_extrude_3d.c
@@ -470,7 +470,7 @@ void VIEW3D_GGT_xform_extrude(struct wmGizmoGroupType *gzgt)
   gzgt->message_subscribe = gizmo_mesh_extrude_message_subscribe;
 
   static const EnumPropertyItem axis_type_items[] = {
-      {EXTRUDE_AXIS_NORMAL, "NORMAL", 0, "Regular", "Only show normal axis"},
+      {EXTRUDE_AXIS_NORMAL, "NORMAL", 0, "Normal", "Only show normal axis"},
       {EXTRUDE_AXIS_XYZ, "XYZ", 0, "XYZ", "Follow scene orientation"},
       {0, NULL, 0, NULL, NULL},
   };
diff --git a/source/blender/makesrna/intern/rna_mesh.c b/source/blender/makesrna/intern/rna_mesh.c
index 31829145b5a..cc01554f73a 100644
--- a/source/blender/makesrna/intern/rna_mesh.c
+++ b/source/blender/makesrna/intern/rna_mesh.c
@@ -47,7 +47,7 @@
 #include "WM_types.h"
 
 const EnumPropertyItem rna_enum_mesh_delimit_mode_items[] = {
-    {BMO_DELIM_NORMAL, "NORMAL", 0, "Regular", "Delimit by face directions"},
+    {BMO_DELIM_NORMAL, "NORMAL", 0, "Normal", "Delimit by face directions"},
     {BMO_DELIM_MATERIAL, "MATERIAL", 0, "Material", "Delimit by face material"},
     {BMO_DELIM_SEAM, "SEAM", 0, "Seam", "Delimit by edge seams"},
     {BMO_DELIM_SHARP, "SHARP", 0, "Sharp", "Delimit by sharp edges"},



More information about the Bf-blender-cvs mailing list