mirror of
https://github.com/dankamongmen/notcurses
synced 2025-03-09 17:19:03 -04:00
Emit rmkx on exit
notcurses_core_init() does `smkx`, so let’s undo that in notcurses_stop_minimal().
This commit is contained in:
parent
577ff0e545
commit
84f417aa41
@ -77,6 +77,9 @@ notcurses_stop_minimal(void* vnc){
|
||||
if(nc->tcache.rmcup && tty_emit(nc->tcache.rmcup, nc->ttyfd)){
|
||||
ret = -1;
|
||||
}
|
||||
if(nc->tcache.rmkx && tty_emit(nc->tcache.rmkx, nc->ttyfd)){
|
||||
ret = -1;
|
||||
}
|
||||
if(nc->tcache.cnorm && tty_emit(nc->tcache.cnorm, nc->ttyfd)){
|
||||
ret = -1;
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user