[Bf-blender-cvs] [112c86fd5d5] master: UI: Use Proper Title Case

Aaron Carlisle noreply at git.blender.org
Mon Jun 8 02:17:28 CEST 2020


Commit: 112c86fd5d5bb1e54f782d9c17a85212272b4f3e
Author: Aaron Carlisle
Date:   Sun Jun 7 19:00:47 2020 -0400
Branches: master
https://developer.blender.org/rB112c86fd5d5bb1e54f782d9c17a85212272b4f3e

UI: Use Proper Title Case

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

M	source/blender/makesrna/intern/rna_modifier.c
M	source/blender/modifiers/intern/MOD_wave.c

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

diff --git a/source/blender/makesrna/intern/rna_modifier.c b/source/blender/makesrna/intern/rna_modifier.c
index 55d9b00bf38..b9334679784 100644
--- a/source/blender/makesrna/intern/rna_modifier.c
+++ b/source/blender/makesrna/intern/rna_modifier.c
@@ -389,7 +389,7 @@ static const EnumPropertyItem modifier_warp_falloff_items[] = {
 
 const EnumPropertyItem rna_enum_dt_method_vertex_items[] = {
     {MREMAP_MODE_TOPOLOGY, "TOPOLOGY", 0, "Topology", "Copy from identical topology meshes"},
-    {MREMAP_MODE_VERT_NEAREST, "NEAREST", 0, "Nearest vertex", "Copy from closest vertex"},
+    {MREMAP_MODE_VERT_NEAREST, "NEAREST", 0, "Nearest Vertex", "Copy from closest vertex"},
     {MREMAP_MODE_VERT_EDGE_NEAREST,
      "EDGE_NEAREST",
      0,
diff --git a/source/blender/modifiers/intern/MOD_wave.c b/source/blender/modifiers/intern/MOD_wave.c
index 48aca9284eb..f3872869120 100644
--- a/source/blender/modifiers/intern/MOD_wave.c
+++ b/source/blender/modifiers/intern/MOD_wave.c
@@ -425,7 +425,7 @@ static void position_panel_draw(const bContext *C, Panel *panel)
   uiItemR(layout, &ptr, "start_position_object", 0, IFACE_("Object"), ICON_NONE);
 
   col = uiLayoutColumn(layout, true);
-  uiItemR(col, &ptr, "start_position_x", 0, "Start position X", ICON_NONE);
+  uiItemR(col, &ptr, "start_position_x", 0, "Start Position X", ICON_NONE);
   uiItemR(col, &ptr, "start_position_y", 0, "Y", ICON_NONE);
 }



More information about the Bf-blender-cvs mailing list