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:
authorBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-17 13:33:47 +0300
committerBrecht Van Lommel <brechtvanlommel@gmail.com>2018-07-17 15:59:07 +0300
commit6d8e36b72355fd8642beca9c400388e9e2906f21 (patch)
tree461242895e9ad04df346545ac207943754b1a4ff
parent7c8e6048b3a95c9c5ca2902da4511c6453e14973 (diff)
Fix inconsistent shade smooth naming in object and edit mode.
-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 77198168dcf..2c1ee3c5338 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -1548,8 +1548,8 @@ class VIEW3D_MT_object(Menu):
layout.separator()
- layout.operator("object.shade_smooth", text="Smooth Shading")
- layout.operator("object.shade_flat", text="Flat Shading")
+ layout.operator("object.shade_smooth")
+ layout.operator("object.shade_flat")
layout.separator()