mirror of
https://github.com/Llewellynvdm/fzf.git
synced 2024-11-18 11:05:16 +00:00
No need to touch mouse flag if it's already false
This commit is contained in:
parent
d0a0f3c052
commit
ae897c8cdb
@ -644,7 +644,7 @@ func (r *LightRenderer) Resume(clear bool, sigcont bool) {
|
||||
}
|
||||
r.enableMouse()
|
||||
r.flush()
|
||||
} else if sigcont && !r.fullscreen {
|
||||
} else if sigcont && !r.fullscreen && r.mouse {
|
||||
// NOTE: SIGCONT (Coming back from CTRL-Z):
|
||||
// It's highly likely that the offset we obtained at the beginning is
|
||||
// no longer correct, so we simply disable mouse input.
|
||||
|
Loading…
Reference in New Issue
Block a user