Call XSync in redraw

It is necessary call to XSync if you want a good tput flash, because in
other way you can not be sure that white screen will be shown.
---
 st.c |    1 +
 1 file changed, 1 insertion(+)
This commit is contained in:
Roberto E. Vargas Caballero 2012-09-16 10:46:08 +02:00
parent 6b42002e1a
commit 9c04eb529f

1
st.c
View File

@ -2150,6 +2150,7 @@ redraw(void) {
struct timespec tv = {0, REDRAW_TIMEOUT * 1000};
tfulldirt();
draw();
XSync(xw.dpy, False); /* necessary for a good tput flash */
nanosleep(&tv, NULL);
}