From 09e4747fc4bb6181bdd6286ae8528d7c3279dd2c Mon Sep 17 00:00:00 2001 From: Jacques Lucke Date: Fri, 17 Jan 2025 12:14:37 +0100 Subject: [PATCH] Fix: inconsistent UI in Copy on Duplicate panel in User Preferences Generally, checkbox labels are not grayed out when they are not checked. Better be consistent with other parts of the UI here. When I saw this, I was first confused because it looked like I can't enable the values that are not checked. This was introduced in #112393. Pull Request: https://projects.blender.org/blender/blender/pulls/132180 --- scripts/startup/bl_ui/space_userpref.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/scripts/startup/bl_ui/space_userpref.py b/scripts/startup/bl_ui/space_userpref.py index 85e0a879fa5..804c469f90e 100644 --- a/scripts/startup/bl_ui/space_userpref.py +++ b/scripts/startup/bl_ui/space_userpref.py @@ -450,8 +450,6 @@ class USERPREF_PT_edit_objects_duplicate_data(EditingPanel, CenterAlignMixIn, Pa row_label = row.row() row_label.label(text=type_name, icon=type_icon) - row_label.active = getattr(edit, prop) - class USERPREF_PT_edit_cursor(EditingPanel, CenterAlignMixIn, Panel): bl_label = "3D Cursor"