diff options
Diffstat (limited to 'widgets/msgviewer.go')
-rw-r--r-- | widgets/msgviewer.go | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/widgets/msgviewer.go b/widgets/msgviewer.go index 89cbc2cc..c88c9817 100644 --- a/widgets/msgviewer.go +++ b/widgets/msgviewer.go @@ -75,9 +75,9 @@ func NewMessageViewer(acct *AccountView, {Strategy: ui.SIZE_EXACT, Size: ui.Const(headerHeight)}, } - if msg.PGPDetails() != nil { + if msg.MessageDetails() != nil { height := 1 - if msg.PGPDetails().IsSigned && msg.PGPDetails().IsEncrypted { + if msg.MessageDetails().IsSigned && msg.MessageDetails().IsEncrypted { height = 2 } rows = append(rows, ui.GridSpec{Strategy: ui.SIZE_EXACT, Size: ui.Const(height)}) @@ -107,8 +107,8 @@ func NewMessageViewer(acct *AccountView, borderChar := acct.UiConfig().BorderCharHorizontal grid.AddChild(header).At(0, 0) - if msg.PGPDetails() != nil { - grid.AddChild(NewPGPInfo(msg.PGPDetails(), acct.UiConfig())).At(1, 0) + if msg.MessageDetails() != nil { + grid.AddChild(NewPGPInfo(msg.MessageDetails(), acct.UiConfig())).At(1, 0) grid.AddChild(ui.NewFill(borderChar, borderStyle)).At(2, 0) grid.AddChild(switcher).At(3, 0) } else { |