aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2012-01-21 23:26:53 +0100
committerAurélien Aptel <aurelien.aptel@gmail.com>2012-01-21 23:26:53 +0100
commit156ce776453dc50b6a908c761403f975af25f756 (patch)
tree8dd526d04f7fdcd6c9d24ef7a1fa3c10a2f5ef6f
parent96c22e1604704504cef6786714191ed5ffb58725 (diff)
downloadst-patched-156ce776453dc50b6a908c761403f975af25f756.tar.bz2
st-patched-156ce776453dc50b6a908c761403f975af25f756.tar.xz
st-patched-156ce776453dc50b6a908c761403f975af25f756.zip
fix PRINT/DRAW _TIMEOUT and fix redrawing bug.
-rw-r--r--st.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/st.c b/st.c
index c543bb1..f56667b 100644
--- a/st.c
+++ b/st.c
@@ -1888,7 +1888,7 @@ expose(XEvent *ev) {
1888 if(xw.state & WIN_REDRAW) { 1888 if(xw.state & WIN_REDRAW) {
1889 if(!e->count) { 1889 if(!e->count) {
1890 xw.state &= ~WIN_REDRAW; 1890 xw.state &= ~WIN_REDRAW;
1891 draw(); 1891 xcopy(0, 0, term.col, term.row);
1892 } 1892 }
1893 } else 1893 } else
1894 XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, e->x-BORDER, e->y-BORDER, 1894 XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, e->x-BORDER, e->y-BORDER,
@@ -2028,7 +2028,7 @@ int
2028last_draw_too_old(void) { 2028last_draw_too_old(void) {
2029 struct timeval now; 2029 struct timeval now;
2030 gettimeofday(&now, NULL); 2030 gettimeofday(&now, NULL);
2031 return TIMEDIFF(now, xw.lastdraw) >= PRINT_TIMEOUT/1000; 2031 return TIMEDIFF(now, xw.lastdraw) >= DRAW_TIMEOUT/1000;
2032} 2032}
2033 2033
2034void 2034void