[Bf-blender-cvs] [828c4d1c54e] blender2.8: Fix T58863: 'Smooth/Flat Shading' to 'Shader Smoot/Flat' in context menu

Jacques Lucke noreply at git.blender.org
Thu Dec 6 16:19:40 CET 2018


Commit: 828c4d1c54e10824445c3f0978d161424c766965
Author: Jacques Lucke
Date:   Thu Dec 6 16:19:29 2018 +0100
Branches: blender2.8
https://developer.blender.org/rB828c4d1c54e10824445c3f0978d161424c766965

Fix T58863: 'Smooth/Flat Shading' to 'Shader Smoot/Flat' in context menu

===================================================================

M	release/scripts/startup/bl_ui/space_view3d.py

===================================================================

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()



More information about the Bf-blender-cvs mailing list