diff --git a/scripts/startup/bl_ui/properties_data_bone.py b/scripts/startup/bl_ui/properties_data_bone.py index 813f4144296..1afa1398f2e 100644 --- a/scripts/startup/bl_ui/properties_data_bone.py +++ b/scripts/startup/bl_ui/properties_data_bone.py @@ -420,16 +420,7 @@ class BONE_PT_display_custom_shape(BoneButtonsPanel, Panel): sub.separator() sub.prop(bone, "show_wire", text="Wireframe") - - # Disabled on Mac due to drawing issues with lacking geometry shader support. See #124691. - is_darwin = platform.system() == "Darwin" - - width_sub = sub.column() - width_sub.active = not is_darwin - width_sub.prop(pchan, "custom_shape_wire_width") - - if is_darwin: - sub.label(text="Custom wire width not available on MacOS", icon='INFO') + sub.prop(pchan, "custom_shape_wire_width") class BONE_PT_inverse_kinematics(BoneButtonsPanel, Panel):