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:
authorJacques Lucke <mail@jlucke.com>2018-12-06 18:19:29 +0300
committerJacques Lucke <mail@jlucke.com>2018-12-06 18:19:29 +0300
commit828c4d1c54e10824445c3f0978d161424c766965 (patch)
tree73f2e159482d7b2189eb070d027543aa25217307 /release
parent50d26e7c78cd1d226550d94ff761af5128f0ca8e (diff)
Fix T58863: 'Smooth/Flat Shading' to 'Shader Smoot/Flat' in context menu
Diffstat (limited to 'release')
-rw-r--r--release/scripts/startup/bl_ui/space_view3d.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/release/scripts/startup/bl_ui/space_view3d.py b/release/scripts/startup/bl_ui/space_view3d.py
index 10a403a6634..f406ddb58d5 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1747,8 +1747,8 @@ class VIEW3D_MT_object_specials(Menu):
if obj.type == 'MESH':
- layout.operator("object.shade_smooth", text="Smooth Shading")
- layout.operator("object.shade_flat", text="Flat Shading")
+ layout.operator("object.shade_smooth", text="Shade Smooth")
+ layout.operator("object.shade_flat", text="Shade Flat")
layout.separator()