Skip to content

Commit

Permalink
tracker: make key.DeleteForward & key.DeleteBackward do same thing
Browse files Browse the repository at this point in the history
  • Loading branch information
vsariola committed Feb 16, 2021
1 parent c3788e1 commit b21bade
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tracker/keyevent.go
Original file line number Diff line number Diff line change
Expand Up @@ -162,7 +162,7 @@ func (t *Tracker) KeyEvent(w *app.Window, e key.Event) bool {
case "F8":
t.SetPlaying(false)
return true
case key.NameDeleteForward:
case key.NameDeleteBackward, key.NameDeleteForward:
switch t.EditMode {
case EditTracks:
t.DeleteSelection()
Expand Down

0 comments on commit b21bade

Please sign in to comment.