m/fzf
1
0
mirror of https://github.com/junegunn/fzf.git synced 2025-11-17 07:43:39 -05:00

Fix tcell renderer's pause and resume

This commit is contained in:
Junegunn Choi
2025-02-02 02:22:47 +09:00
parent 32234be7a2
commit 0c61223884
3 changed files with 6 additions and 5 deletions

View File

@@ -560,7 +560,7 @@ func (r *FullscreenRenderer) GetChar() Event {
func (r *FullscreenRenderer) Pause(clear bool) {
if clear {
_screen.Fini()
r.Close()
}
}
@@ -572,6 +572,7 @@ func (r *FullscreenRenderer) Resume(clear bool, sigcont bool) {
func (r *FullscreenRenderer) Close() {
_screen.Fini()
_screen = nil
}
func (r *FullscreenRenderer) RefreshWindows(windows []Window) {