From c528a54e4c515009b3792f91d71c686934a1dd51 Mon Sep 17 00:00:00 2001 From: ideal Date: Mon, 30 Mar 2020 19:18:52 +0800 Subject: [PATCH] Fix described detail not showing complete --- internal/view/details.go | 1 + 1 file changed, 1 insertion(+) diff --git a/internal/view/details.go b/internal/view/details.go index 902b8891..9f1362b4 100644 --- a/internal/view/details.go +++ b/internal/view/details.go @@ -55,6 +55,7 @@ func (d *Details) Init(_ context.Context) error { d.SetHighlightColor(tcell.ColorOrange) d.SetTitleColor(tcell.ColorAqua) d.SetInputCapture(d.keyboard) + d.SetBorderPadding(0, 0, 1, 1) d.SetChangedFunc(func() { d.app.Draw() })