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.
This commit is contained in:
Galen Abell 2019-07-27 10:38:51 -04:00 committed by Drew DeVault
parent d931bbeff1
commit a669233614
1 changed files with 1 additions and 1 deletions

View File

@ -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