aboutsummaryrefslogtreecommitdiff
path: root/src/footer.go
diff options
context:
space:
mode:
Diffstat (limited to 'src/footer.go')
-rw-r--r--src/footer.go6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/footer.go b/src/footer.go
index 96b0aa3..be275c3 100644
--- a/src/footer.go
+++ b/src/footer.go
@@ -3,7 +3,11 @@ package src
3func (a *app) updateFooter() { 3func (a *app) updateFooter() {
4 switch a.headerSections.GetHighlights()[0] { 4 switch a.headerSections.GetHighlights()[0] {
5 case "artists": 5 case "artists":
6 a.footer.SetText("[blue]l:[yellow] Next song [blue]p:[yellow] Toggle pause") 6 if a.tv.GetFocus() == a.artistsTree {
7 a.footer.SetText("[blue]l:[yellow] Next song [blue]p:[yellow] Toggle pause [blue]e:[yellow] Play album last [blue]n:[yellow] Play album next")
8 } else if a.tv.GetFocus() == a.songsList {
9 a.footer.SetText("[blue]l:[yellow] Next song [blue]p:[yellow] Toggle pause [blue]e:[yellow] Play song last [blue]n:[yellow] Play song next")
10 }
7 case "playqueue": 11 case "playqueue":
8 a.footer.SetText("[blue]l:[yellow] Next song [blue]p:[yellow] Toggle pause [blue]d:[yellow] Remove [blue]j:[yellow] Move up [blue]k:[yellow] Move down") 12 a.footer.SetText("[blue]l:[yellow] Next song [blue]p:[yellow] Toggle pause [blue]d:[yellow] Remove [blue]j:[yellow] Move up [blue]k:[yellow] Move down")
9 case "playlists": 13 case "playlists":