From f776fb82469d0b9aefffd3f16b27024d53d922c8 Mon Sep 17 00:00:00 2001 From: Dian M Fay Date: Mon, 29 Nov 2021 17:48:35 -0500 Subject: style: customize vertical and horizontal border characters New border-char-horizontal and border-char-vertical config settings in aerc.conf allow users to modify border appearance from the default 1-wide/tall blank space. In stylesets, border.fg now affects the foreground color when custom characters are defined. Signed-off-by: Robin Jarry --- widgets/compose.go | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'widgets/compose.go') diff --git a/widgets/compose.go b/widgets/compose.go index 69a2dcc..d3e57c5 100644 --- a/widgets/compose.go +++ b/widgets/compose.go @@ -679,9 +679,10 @@ func (c *Composer) updateGrid() { c.grid.RemoveChild(c.heditors) } borderStyle := c.config.Ui.GetStyle(config.STYLE_BORDER) + borderChar := c.config.Ui.BorderCharHorizontal c.heditors = heditors c.grid.AddChild(c.heditors).At(0, 0) - c.grid.AddChild(ui.NewFill(' ', borderStyle)).At(1, 0) + c.grid.AddChild(ui.NewFill(borderChar, borderStyle)).At(1, 0) } func (c *Composer) reloadEmail() error { -- cgit v1.2.3