diff options
| author | Bruce Hill <bruce@bruce-hill.com> | 2019-09-21 19:00:53 -0700 |
|---|---|---|
| committer | Bruce Hill <bruce@bruce-hill.com> | 2019-09-21 19:00:53 -0700 |
| commit | f55c6a5c82733392492ab606e95e8fad6d03d478 (patch) | |
| tree | 5a01b1c7f6596d30b70ae56641ae6779d553ce36 | |
| parent | a881d4ba4aa4d0c4973aa914f1ea85b502fabee1 (diff) | |
Fix for ctrl-z not restoring cursor visibility
| -rw-r--r-- | bb.c | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -1273,7 +1273,7 @@ void bb_browse(bb_t *bb, const char *path) cleanup_and_exit(SIGINT); case KEY_CTRL_Z: - fputs(T_OFF(T_ALT_SCREEN), tty_out); + fputs(T_LEAVE_BBMODE, tty_out); restore_term(&orig_termios); raise(SIGTSTP); init_term(); |
