diff options
author | Eyal Sawady <ecs@d2evs.net> | 2021-01-13 02:08:09 -0500 |
---|---|---|
committer | Reto Brunner <reto@labrat.space> | 2021-01-14 06:36:09 +0100 |
commit | d344ceecfe9892db1e836e7354a5ce25c2cb7290 (patch) | |
tree | febc4dc3001bd56f2b4d381ab45f2c33cabb85f4 | |
parent | 0e554a879d1b8de61e6eb7d2e7ef64e9ec99ce1b (diff) | |
download | aerc-d344ceecfe9892db1e836e7354a5ce25c2cb7290.tar.gz |
compose: apply default style to header separator
-rw-r--r-- | widgets/compose.go | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/widgets/compose.go b/widgets/compose.go index aab33088..01c6281a 100644 --- a/widgets/compose.go +++ b/widgets/compose.go @@ -770,9 +770,9 @@ func (he *headerEditor) setValue(val string) { } func (he *headerEditor) Draw(ctx *ui.Context) { - normalized := textproto.CanonicalMIMEHeaderKey(he.name) - name := normalized + " " - size := runewidth.StringWidth(name) + name := textproto.CanonicalMIMEHeaderKey(he.name) + // Extra character to put a blank cell between the header and the input + size := runewidth.StringWidth(name) + 1 defaultStyle := he.uiConfig.GetStyle(config.STYLE_DEFAULT) headerStyle := he.uiConfig.GetStyle(config.STYLE_HEADER) ctx.Fill(0, 0, size, ctx.Height(), ' ', defaultStyle) |