UI: remove redo popover from topbar

See: T55039
This commit is contained in:
Campbell Barton 2018-06-12 10:51:23 +02:00
parent 4bf331c0fc
commit 6d152c5997
Notes: blender-bot 2023-02-14 05:44:22 +01:00
Referenced by issue #55450, Mouse wheel on buttons region header causes the whole space to flicker
1 changed files with 0 additions and 11 deletions

View File

@ -262,17 +262,6 @@ class TOPBAR_HT_lower_bar(Header):
layout.prop(scene, "transform_orientation", text="")
# Command Settings (redo)
op = context.active_operator
row = layout.row()
row.enabled = op is not None
row.popover(
space_type='TOPBAR',
region_type='HEADER',
panel_type="TOPBAR_PT_redo",
text=op.name + " Settings" if op else "Command Settings",
)
class _draw_left_context_mode:
@staticmethod