aboutsummaryrefslogtreecommitdiffstats
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2011-10-20 23:26:58 +0200
committerAurélien Aptel <aurelien.aptel@gmail.com>2011-10-20 23:26:58 +0200
commit23bb97d9f3b01da5bc4ad5c01616606adee4f1da (patch)
treef306932bc20bc7a5ee270b6d199430403b86adea /st.c
parent0dbf9c8c12a5de35d1cef22349ab80e8f0a8f10e (diff)
downloadst-23bb97d9f3b01da5bc4ad5c01616606adee4f1da.tar.zst
drawregion() only copies region on screen.
Diffstat (limited to 'st.c')
-rw-r--r--st.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/st.c b/st.c
index ad6db0d..46f6d5b 100644
--- a/st.c
+++ b/st.c
@@ -1855,7 +1855,7 @@ drawregion(int x1, int y1, int x2, int y2) {
xdraws(buf, base, ox, y, ic, ib);
}
xdrawcursor();
- XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, 0, 0, xw.bufw, xw.bufh, BORDER, BORDER);
+ XCopyArea(xw.dpy, xw.buf, xw.win, dc.gc, x1*xw.cw, y1*xw.ch, (x2-1)*xw.cw, (y2-1)*xw.ch, BORDER, BORDER);
}
void