UI: tweak object type active state

The state of the objects visibility should only impact
the 'active' display of the select icon, not it's self.
This commit is contained in:
2018-11-09 13:18:50 +11:00
parent 7346c4f513
commit f96e7154f6

View File

@@ -4031,8 +4031,9 @@ class VIEW3D_PT_object_type_visibility(Panel):
row.label(text=attr_name)
row.prop(view, attr_v, text="", icon=icon_v, emboss=False)
row.active = getattr(view, attr_v)
row.prop(view, attr_s, text="", icon=icon_s, emboss=False)
rowsub = row.row(align=True)
rowsub.active = getattr(view, attr_v)
rowsub.prop(view, attr_s, text="", icon=icon_s, emboss=False)
class VIEW3D_PT_shading(Panel):