Cleanup: remove fix for #112129 which is no longer needed

Since [0] this is no longer needed.

[0]: a8db82861809be71f501d33cfe0a3e231ce1ae4d
This commit is contained in:
Campbell Barton 2023-09-18 16:05:45 +10:00
parent 209056b0e9
commit 906a5a89c4

@ -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()