reset the alt screen in treset
Signed-off-by: Roberto E. Vargas Caballero <k0ga@shike2.com>
This commit is contained in:
parent
fa04911c91
commit
177d888dff
1 changed files with 6 additions and 3 deletions
5
st.c
5
st.c
|
@ -1356,9 +1356,12 @@ treset(void) {
|
||||||
memset(term.trantbl, sizeof(term.trantbl), CS_USA);
|
memset(term.trantbl, sizeof(term.trantbl), CS_USA);
|
||||||
term.charset = 0;
|
term.charset = 0;
|
||||||
|
|
||||||
tclearregion(0, 0, term.col-1, term.row-1);
|
for(i = 0; i < 2; i++) {
|
||||||
tmoveto(0, 0);
|
tmoveto(0, 0);
|
||||||
tcursor(CURSOR_SAVE);
|
tcursor(CURSOR_SAVE);
|
||||||
|
tclearregion(0, 0, term.col-1, term.row-1);
|
||||||
|
tswapscreen();
|
||||||
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
void
|
void
|
||||||
|
|
Loading…
Reference in a new issue