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-24 00:51:25 +0300
committerAaron Carlisle <carlisle.b3d@gmail.com>2020-06-24 00:54:09 +0300
commit49234c15e29989ab8d67b5728098398d5b22a812 (patch)
treeb607a7498e7027f3108dae735366d5b3881443b2 /intern/cycles/blender
parentc26abd1c29a25e364fb3f683139364c0d2bb7918 (diff)
UI: Cycles: Use Title Case
Diffstat (limited to 'intern/cycles/blender')
-rw-r--r--intern/cycles/blender/addon/ui.py2
1 files changed, 1 insertions, 1 deletions
diff --git a/intern/cycles/blender/addon/ui.py b/intern/cycles/blender/addon/ui.py
index 592c59cc661..85da1a17c2b 100644
--- a/intern/cycles/blender/addon/ui.py
+++ b/intern/cycles/blender/addon/ui.py
@@ -398,7 +398,7 @@ class CYCLES_RENDER_PT_hair(CyclesButtonsPanel, Panel):
col = layout.column()
col.prop(ccscene, "shape", text="Shape")
if ccscene.shape == 'RIBBONS':
- col.prop(ccscene, "subdivisions", text="Curve subdivisions")
+ col.prop(ccscene, "subdivisions", text="Curve Subdivisions")
class CYCLES_RENDER_PT_volumes(CyclesButtonsPanel, Panel):