mirror of
https://github.com/jesseduffield/lazygit.git
synced 2025-07-05 00:59:19 +02:00
bump dependencies
This commit is contained in:
5
vendor/github.com/jesseduffield/gocui/gui.go
generated
vendored
5
vendor/github.com/jesseduffield/gocui/gui.go
generated
vendored
@ -134,6 +134,9 @@ type Gui struct {
|
||||
// frame of the current view.
|
||||
Highlight bool
|
||||
|
||||
// If ShowListFooter is true then show list footer (i.e. the part that says we're at item 5 out of 10)
|
||||
ShowListFooter bool
|
||||
|
||||
// If Cursor is true then the cursor is enabled.
|
||||
Cursor bool
|
||||
|
||||
@ -723,7 +726,7 @@ func (g *Gui) flush() error {
|
||||
return err
|
||||
}
|
||||
}
|
||||
if v.ContainsList {
|
||||
if v.ContainsList && g.ShowListFooter {
|
||||
if err := g.drawListFooter(v, fgColor, bgColor); err != nil {
|
||||
return err
|
||||
}
|
||||
|
Reference in New Issue
Block a user