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
This commit is contained in:
Julien Kaspar 2022-11-10 10:45:15 -08:00 committed by Joseph Eagar
parent cc2b5959bb
commit 659de90a32
1 changed files with 2 additions and 2 deletions

View File

@ -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'