mirror of
https://github.com/jesseduffield/lazygit.git
synced 2024-11-26 09:00:57 +02:00
don't crash if we have no lines to stage
This commit is contained in:
parent
f07fc31f8b
commit
e0bdfad63a
@ -1,8 +1,6 @@
|
||||
package gui
|
||||
|
||||
import (
|
||||
"github.com/go-errors/errors"
|
||||
|
||||
"github.com/jesseduffield/gocui"
|
||||
"github.com/jesseduffield/lazygit/pkg/git"
|
||||
"github.com/jesseduffield/lazygit/pkg/utils"
|
||||
@ -60,7 +58,7 @@ func (gui *Gui) refreshStagingPanel() error {
|
||||
}
|
||||
|
||||
if len(stageableLines) == 0 {
|
||||
return errors.New("No lines to stage")
|
||||
return gui.createErrorPanel(gui.g, "No lines to stage")
|
||||
}
|
||||
|
||||
if err := gui.focusLineAndHunk(); err != nil {
|
||||
|
Loading…
Reference in New Issue
Block a user