aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRoberto E. Vargas Caballero <k0ga@shike2.com>2012-09-24 10:26:50 +0200
committerRoberto E. Vargas Caballero <k0ga@shike2.com>2012-09-24 10:26:50 +0200
commit57e9f030599a76debe1efbca82c3500d127871ab (patch)
treee2eee119e45c70e407b561824f546eba204698fb
parent61ffa628ff39f45280b6c0a7bb9d11ade401c479 (diff)
downloadst-57e9f030599a76debe1efbca82c3500d127871ab.tar.gz
st-57e9f030599a76debe1efbca82c3500d127871ab.tar.bz2
Clear X window in tsetreset()
tsetreset() is called when it is necessary a full initialization of the terminal, so it also should clean the full X window and not only the terminal content. It is necessary change the order of the initialization in main(), and put xinit before of tnew(), because tnew() calls to tsetreset(), and this can cause a call to xreset() with incorrect values. --- st.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-)
-rw-r--r--st.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/st.c b/st.c
index 3c158c0..4c8d67f 100644
--- a/st.c
+++ b/st.c
@@ -952,6 +952,7 @@ treset(void) {
term.tabs[i] = 1;
term.top = 0, term.bot = term.row - 1;
term.mode = MODE_WRAP;
+ xclear(0, 0, xw.w, xw.h);
tclearregion(0, 0, term.col-1, term.row-1);
}
@@ -2433,9 +2434,9 @@ main(int argc, char *argv[]) {
run:
setlocale(LC_CTYPE, "");
+ xinit();
tnew(80, 24);
ttynew();
- xinit();
selinit();
run();
return 0;