aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/st.c b/st.c
index b013bca..f4ad23d 100644
--- a/st.c
+++ b/st.c
@@ -2150,6 +2150,7 @@ redraw(void) {
2150 struct timespec tv = {0, REDRAW_TIMEOUT * 1000}; 2150 struct timespec tv = {0, REDRAW_TIMEOUT * 1000};
2151 tfulldirt(); 2151 tfulldirt();
2152 draw(); 2152 draw();
2153 XSync(xw.dpy, False); /* necessary for a good tput flash */
2153 nanosleep(&tv, NULL); 2154 nanosleep(&tv, NULL);
2154} 2155}
2155 2156