Skip to content

Commit

Permalink
Merge pull request #184 from anhoder/master
Browse files Browse the repository at this point in the history
fix: w not quit
  • Loading branch information
anhoder committed Aug 28, 2023
2 parents 1c85e03 + a84e25c commit ee60235
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion pkg/ui/event_handler.go
Original file line number Diff line number Diff line change
Expand Up @@ -65,7 +65,7 @@ func (h *EventHandler) KeyMsgHandle(msg tea.KeyMsg, a *model.App) (bool, model.P
return true, newPage, a.Tick(time.Nanosecond)
case "w", "W":
logout()
return true, main, tea.Quit
return true, nil, tea.Quit
case "-", "−", "ー": // half-width, full-width and katakana
player.DownVolume()
case "=", "=":
Expand Down

0 comments on commit ee60235

Please sign in to comment.