Welcome to mirror list, hosted at ThFree Co, Russian Federation.

git.blender.org/blender-addons.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorCampbell Barton <ideasman42@gmail.com>2019-06-22 08:09:47 +0300
committerCampbell Barton <ideasman42@gmail.com>2019-06-22 08:09:47 +0300
commit5fbb27d65ceac46d4377d8682192d4b93c7476bf (patch)
tree8f8f2aa992170040bb6405f6a13fec167b0ccf43 /object_boolean_tools.py
parenta1f74409ea3003a3eedb4d613336953a546c2397 (diff)
Replace VISIBLE_IPO buttons with HIDE ON/OFF
Diffstat (limited to 'object_boolean_tools.py')
-rw-r--r--object_boolean_tools.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/object_boolean_tools.py b/object_boolean_tools.py
index 1c4220ae..56c11aec 100644
--- a/object_boolean_tools.py
+++ b/object_boolean_tools.py
@@ -977,10 +977,10 @@ class VIEW3D_PT_booltool_config(Panel):
if isFTransf():
row = layout.row(align=True)
row.operator(BTool_EnableFTransform.bl_idname, text="Fast Vis", icon=icon)
- row.operator(BTool_EnableThisBrush.bl_idname, text="Enable", icon="VISIBLE_IPO_ON")
+ row.operator(BTool_EnableThisBrush.bl_idname, text="Enable", icon="HIDE_OFF")
row = layout.row(align=True)
else:
- row.operator(BTool_EnableThisBrush.bl_idname, icon="VISIBLE_IPO_ON")
+ row.operator(BTool_EnableThisBrush.bl_idname, icon="HIDE_OFF")
row = layout.row(align=True)
if isPolyBrush(actObj):