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/modifiers
parent281319653e5ba02ad3787511191648c5b8fbfa3d (diff)
UI: Use Proper Title Case
Diffstat (limited to 'source/blender/modifiers')
-rw-r--r--source/blender/modifiers/intern/MOD_wave.c2
1 files changed, 1 insertions, 1 deletions
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);
}