1
0
mirror of https://github.com/jesseduffield/lazygit.git synced 2025-12-01 22:52:01 +02:00

remove useless condition

This commit is contained in:
Anthony HAMON
2018-08-06 07:41:29 +02:00
parent 7b7621c18c
commit 684e8b2e80
3 changed files with 5 additions and 12 deletions

6
gui.go
View File

@@ -196,10 +196,8 @@ func keybindings(g *gocui.Gui) error {
if err := g.SetKeybinding("stash", 'k', gocui.ModNone, handleStashPop); err != nil {
return err
}
if err := g.SetKeybinding("stash", 'd', gocui.ModNone, handleStashDrop); err != nil {
return err
}
return nil
return g.SetKeybinding("stash", 'd', gocui.ModNone, handleStashDrop)
}
func layout(g *gocui.Gui) error {