Skip to content

Commit

Permalink
fix: issue #88, duplicate key binding for "scan" and "save queue as p…
Browse files Browse the repository at this point in the history
…laylist"
  • Loading branch information
xxxserxxx committed Dec 19, 2024
1 parent 4a8428b commit 8f25676
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -116,7 +116,7 @@ These controls are accessible from any view:
- `-`/`=`: Volume down/volume up
- `,`/`.`: Seek -10/+10 seconds
- `r`: Add 50 random songs to the queue
- `s`: Start a server library scan
- `c`: Start a server library scan

### Browser Controls

Expand Down
2 changes: 1 addition & 1 deletion gui_handlers.go
Original file line number Diff line number Diff line change
Expand Up @@ -101,7 +101,7 @@ func (ui *Ui) handlePageInput(event *tcell.EventKey) *tcell.EventKey {
}
ui.queuePage.UpdateQueue()

case 's':
case 'c':
if err := ui.connection.StartScan(); err != nil {
ui.logger.PrintError("startScan:", err)
}
Expand Down
2 changes: 1 addition & 1 deletion help_text.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ P stop
-/=(+) volume down/volume up
,/. seek -10/+10 seconds
r add 50 random songs to queue
s start server library scan
c start server library sCan
`

const helpPageBrowser = `
Expand Down

0 comments on commit 8f25676

Please sign in to comment.