Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAaron Carlisle <carlisle.b3d@gmail.com>2020-06-08 02:00:47 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-06-08 02:00:47 +0300
commit112c86fd5d5bb1e54f782d9c17a85212272b4f3e (patch)
tree09470b002b58396ee6acbbc21b4cefc174a70e7e /source/blender
parent281319653e5ba02ad3787511191648c5b8fbfa3d (diff)
UI: Use Proper Title Case
Diffstat (limited to 'source/blender')
-rw-r--r--source/blender/makesrna/intern/rna_modifier.c2
-rw-r--r--source/blender/modifiers/intern/MOD_wave.c2
2 files changed, 2 insertions, 2 deletions
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);
}