Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 7 additions & 1 deletion gui.go
Original file line number Diff line number Diff line change
Expand Up @@ -1668,7 +1668,13 @@ func (g *Gui) Resume() error {

g.suspended = false

return g.screen.Resume()
if err-:= g.screen.Resume(); err != nil {
return err
}
// engage() clears the physical screen but leaves tcell's "last drawn"
// cache stale. Sync() invalidates it so the next Show() does a full redraw.
g.screen.Sync()
return nill
}

// matchView returns if the keybinding matches the current view (and the view's context)
Expand Down