about summary refs log tree commit diff stats
path: root/widgets/msgviewer.go
diff options
context:
space:
mode:
Diffstat (limited to 'widgets/msgviewer.go')
-rw-r--r--widgets/msgviewer.go4
1 files changed, 2 insertions, 2 deletions
diff --git a/widgets/msgviewer.go b/widgets/msgviewer.go
index b1decd5..fc4529c 100644
--- a/widgets/msgviewer.go
+++ b/widgets/msgviewer.go
@@ -731,7 +731,7 @@ type HeaderView struct {
 
 func (hv *HeaderView) Draw(ctx *ui.Context) {
 	name := hv.Name
-	size := runewidth.StringWidth(name)
+	size := runewidth.StringWidth(name + ":")
 	lim := ctx.Width() - size - 1
 	value := runewidth.Truncate(" "+hv.Value, lim, "…")
 
@@ -744,7 +744,7 @@ func (hv *HeaderView) Draw(ctx *ui.Context) {
 	}
 
 	ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', vstyle)
-	ctx.Printf(0, 0, hstyle, "%s", name)
+	ctx.Printf(0, 0, hstyle, "%s:", name)
 	ctx.Printf(size, 0, vstyle, "%s", value)
 }