Skip to content

Commit

Permalink
chore(player): Move quit to the end of help
Browse files Browse the repository at this point in the history
  • Loading branch information
gabe565 committed Apr 27, 2024
1 parent 5f51141 commit 4f6d326
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion internal/movie/player.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,9 +44,9 @@ func NewPlayer(m *Movie, logger *log.Entry, renderer *lipgloss.Renderer) Player
helpModel.Styles.ShortDesc = helpModel.Styles.ShortDesc.Renderer(renderer)
helpModel.Styles.ShortKey = helpModel.Styles.ShortKey.Renderer(renderer)
player.helpViewCache = helpModel.ShortHelpView([]key.Binding{
player.keymap.quit,
player.keymap.navigate,
player.keymap.choose,
player.keymap.quit,
})

return player
Expand Down

0 comments on commit 4f6d326

Please sign in to comment.