UI: Fix ugly alignment of timeline popover buttons

Apparently things have changed since {rB98d205508977a6f72bf55},
and putting the buttons in two separate rows is no longer enough
to keep the right-most popover button in the timeline header from
aligning with the menu buttons. This just adds a separator large
enough to avoid the alignment.
This commit is contained in:
Hans Goudey 2021-01-26 11:55:36 -06:00
parent 23e108c5b6
commit a6016bf5af
1 changed files with 3 additions and 0 deletions

View File

@ -107,6 +107,9 @@ class TIME_MT_editor_menus(Menu):
text="Keying",
)
# Add a separator to keep the popover button from aligning with the menu button.
sub.separator(factor=0.4)
if horizontal:
sub = row.row(align=True)