[Bf-blender-cvs] [659de90a324] master: Sculpt: Rename Show/Hide operators for consistency

Julien Kaspar noreply at git.blender.org
Thu Nov 10 19:47:19 CET 2022


Commit: 659de90a324946f75e02fa8e45afe1b48937f455
Author: Julien Kaspar
Date:   Thu Nov 10 10:45:15 2022 -0800
Branches: master
https://developer.blender.org/rB659de90a324946f75e02fa8e45afe1b48937f455

Sculpt: Rename Show/Hide operators for consistency

This is a minor naming update to make the box hide and show operators in sculpt mode follow current naming conventions.

Reviewed by: Joseph Eagar
Differential Revision: https://developer.blender.org/D16413
Ref D16413

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

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 947f9056df7..7e0f41f7c86 100644
--- a/release/scripts/startup/bl_ui/space_view3d.py
+++ b/release/scripts/startup/bl_ui/space_view3d.py
@@ -3212,11 +3212,11 @@ class VIEW3D_MT_sculpt(Menu):
         props.action = 'SHOW'
         props.area = 'ALL'
 
-        props = layout.operator("paint.hide_show", text="Show Bounding Box")
+        props = layout.operator("paint.hide_show", text="Box Show")
         props.action = 'SHOW'
         props.area = 'INSIDE'
 
-        props = layout.operator("paint.hide_show", text="Hide Bounding Box")
+        props = layout.operator("paint.hide_show", text="Box Hide")
         props.action = 'HIDE'
         props.area = 'INSIDE'



More information about the Bf-blender-cvs mailing list