From a669233614d3b4134baabd3325cb64e8f0f2cdeb Mon Sep 17 00:00:00 2001 From: Galen Abell Date: Sat, 27 Jul 2019 10:38:51 -0400 Subject: Fix review message not filling entire space Adding an attachment, switching to a different tab, and switching back to the review message caused the "filled space" in the review message to disappear, since there was one too many rows in the layout. --- widgets/compose.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'widgets/compose.go') diff --git a/widgets/compose.go b/widgets/compose.go index 4f6f7a1..6a41e70 100644 --- a/widgets/compose.go +++ b/widgets/compose.go @@ -553,7 +553,7 @@ type reviewMessage struct { func newReviewMessage(composer *Composer, err error) *reviewMessage { spec := []ui.GridSpec{{ui.SIZE_EXACT, 2}, {ui.SIZE_EXACT, 1}} - for range composer.attachments { + for i := 0; i < len(composer.attachments)-1; i++ { spec = append(spec, ui.GridSpec{ui.SIZE_EXACT, 1}) } // make the last element fill remaining space -- cgit v1.2.3