summaryrefslogtreecommitdiff
path: root/menu/state.go
diff options
context:
space:
mode:
Diffstat (limited to 'menu/state.go')
-rw-r--r--menu/state.go3
1 files changed, 3 insertions, 0 deletions
diff --git a/menu/state.go b/menu/state.go
index 3a46132..55da10b 100644
--- a/menu/state.go
+++ b/menu/state.go
@@ -19,9 +19,12 @@ func (m *Model) State() string {
sources := make([]string, 0, len(st.Sources))
for i, hs := range st.HydratedSources {
src := m.Source(hs)
+
+ // do not pad the bottom source, the motd goes there
if i != len(st.HydratedSources)-1 {
src += "\n"
}
+
sources = append(sources, src)
}