GPencil: Change Fill Boundary icon

The icon has been changed to `eye` because is more consistent with other areas.
This commit is contained in:
Antonio Vazquez
2021-06-04 12:44:18 +02:00
parent b6b20c4d92
commit 0037e08b06

View File

@@ -1456,7 +1456,11 @@ class VIEW3D_PT_tools_grease_pencil_brush_advanced(View3DPanel, Panel):
elif brush.gpencil_tool == 'FILL':
row = col.row(align=True)
row.prop(gp_settings, "fill_draw_mode", text="Boundary")
row.prop(gp_settings, "show_fill_boundary", text="", icon='GRID')
if gp_settings.show_fill_boundary:
icon = 'HIDE_OFF'
else:
icon = 'HIDE_ON'
row.prop(gp_settings, "show_fill_boundary", text="", icon=icon)
col.separator()
row = col.row(align=True)