diff --git a/scripts/startup/bl_operators/wm.py b/scripts/startup/bl_operators/wm.py index 9513059414d..e57d7f1987c 100644 --- a/scripts/startup/bl_operators/wm.py +++ b/scripts/startup/bl_operators/wm.py @@ -3446,11 +3446,6 @@ class WM_MT_region_toggle_pie(Menu): # Use to access the labels. enum_items = bpy.types.Region.bl_rna.properties["type"].enum_items_static_ui - # Prefer a 4 item pie menu where possible as there are some differences - # when a pie menu has more than 4 items, see: #112129. - if not items_overflow and not any(items[4:]): - del items[4:] - for region_type_list in (items + items_overflow): if not region_type_list: pie.separator()