From 6faef7b149dd718dd69610b5beec9110cad0d86a Mon Sep 17 00:00:00 2001 From: Alaska Date: Tue, 22 Apr 2025 09:50:57 +0200 Subject: [PATCH] Fix #137647: Remove warning about macOS not supporting custom wire widths In a previous commmit (1), custom wire width for armatures was disabled on macOS and a corrisponding warning was added to the UI due to a limitation at the time leading to rendering artifacts #124691. These limiations appear to have been sorted in Blender 4.4 and so custom wire widths now work on macOS. So this commit removes the warning message form the UI. (1) a45197102615033e5819483c7831824ecf551e76 Pull Request: https://projects.blender.org/blender/blender/pulls/137651 --- scripts/startup/bl_ui/properties_data_bone.py | 11 +---------- 1 file changed, 1 insertion(+), 10 deletions(-) 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):