msgviewer: do not interpret header as format string

This commit is contained in:
Drew DeVault 2020-03-19 18:33:42 -04:00
parent 8372e9e39f
commit 696f4ff084
1 changed files with 2 additions and 2 deletions

View File

@ -702,8 +702,8 @@ func (hv *HeaderView) Draw(ctx *ui.Context) {
hstyle = tcell.StyleDefault.Bold(true)
}
ctx.Fill(0, 0, ctx.Width(), ctx.Height(), ' ', vstyle)
ctx.Printf(0, 0, hstyle, name)
ctx.Printf(size, 0, vstyle, value)
ctx.Printf(0, 0, hstyle, "%s", name)
ctx.Printf(size, 0, vstyle, "%s", value)
}
func (hv *HeaderView) Invalidate() {