mirror of
https://github.com/jesseduffield/lazygit.git
synced 2026-09-10 15:46:26 -04: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 a new issue