Skip to content

Commit

Permalink
Fix incorrect direction when switching mounts
Browse files Browse the repository at this point in the history
  • Loading branch information
slarwise committed Aug 18, 2024
1 parent 0e5bbfa commit 0b826a1
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions main.go
Original file line number Diff line number Diff line change
Expand Up @@ -165,9 +165,9 @@ func main() {
ui.Prompt += string(ev.Rune())
ui.newKeysView()
}
case tcell.KeyRight:
ui.nextMount()
case tcell.KeyLeft:
ui.nextMount()
case tcell.KeyRight:
ui.previousMount()
case tcell.KeyCtrlK, tcell.KeyCtrlP, tcell.KeyUp:
ui.moveUp()
Expand Down

0 comments on commit 0b826a1

Please sign in to comment.