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:
authorHans Goudey <h.goudey@me.com>2022-03-21 19:35:17 +0300
committerHans Goudey <h.goudey@me.com>2022-03-21 19:35:17 +0300
commitf92e3b39f18a3d3e29873faed98f6279571fbc4f (patch)
tree201037e54ae327c64e226cc8025b73072a10946f /release/scripts/startup/bl_ui/space_graph.py
parent8530e48f8692f4b92c43489029f2d2ef67c7cb62 (diff)
UI: Use title case for labels
Diffstat (limited to 'release/scripts/startup/bl_ui/space_graph.py')
-rw-r--r--release/scripts/startup/bl_ui/space_graph.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_graph.py b/release/scripts/startup/bl_ui/space_graph.py
index 86d9771b638..706e228c5d9 100644
--- a/release/scripts/startup/bl_ui/space_graph.py
+++ b/release/scripts/startup/bl_ui/space_graph.py
@@ -331,8 +331,8 @@ class GRAPH_MT_slider(Menu):
layout = self.layout
layout.operator("graph.breakdown", text="Breakdown")
- layout.operator("graph.blend_to_neighbor", text="Blend To Neighbor")
- layout.operator("graph.blend_to_default", text="Blend To Default Value")
+ layout.operator("graph.blend_to_neighbor", text="Blend to Neighbor")
+ layout.operator("graph.blend_to_default", text="Blend to Default Value")
class GRAPH_MT_view_pie(Menu):