Introduction
Introduction Statistics Contact Development Disclaimer Help
tClear X window in tsetreset() - st - [fork] customized build of st, the simple…
git clone git://src.adamsgaard.dk/st
Log
Files
Refs
README
LICENSE
---
commit b6cfff16254bb9014f27ff4c5c9e49953ee91735
parent 21a0c4a2e08ede1d04c472497db7d9aef644d00c
Author: Roberto E. Vargas Caballero <[email protected]>
Date: Mon, 24 Sep 2012 10:26:50 +0200
Clear X window in tsetreset()
ttsetreset() is called when it is necessary a full initialization of the
tterminal, so it also should clean the full X window and not only the
tterminal 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(-)
Diffstat:
M st.c | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
---
diff --git a/st.c b/st.c
t@@ -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);
}
t@@ -2433,9 +2434,9 @@ main(int argc, char *argv[]) {
run:
setlocale(LC_CTYPE, "");
+ xinit();
tnew(80, 24);
ttynew();
- xinit();
selinit();
run();
return 0;
You are viewing proxied material from mx1.adamsgaard.dk. The copyright of proxied material belongs to its original authors. Any comments or complaints in relation to proxied material should be directed to the original authors of the content concerned. Please see the disclaimer for more details.