UI: Reduce item padding in the gpencil edit context menus

Aligning the columns removes unecessary white space.
The same as in the D8480 / rBb2e0c8f902fa.

Differential Revision: https://developer.blender.org/D9111
This commit is contained in:
Yevgeny Makarov 2020-10-07 07:40:34 -05:00 committed by Hans Goudey
parent a81b059f1d
commit f948459f12
1 changed files with 2 additions and 2 deletions

View File

@ -6955,7 +6955,7 @@ class VIEW3D_MT_gpencil_edit_context_menu(Menu):
row = layout.row()
if is_point_mode or is_segment_mode:
col = row.column()
col = row.column(align=True)
col.label(text="Point Context Menu", icon='GP_SELECT_POINTS')
col.separator()
@ -7006,7 +7006,7 @@ class VIEW3D_MT_gpencil_edit_context_menu(Menu):
if is_stroke_mode:
col = row.column()
col = row.column(align=True)
col.label(text="Stroke Context Menu", icon='GP_SELECT_STROKES')
col.separator()