]> Sergey Matveev's repositories - st.git/commitdiff
drawregion() only copies region on screen.
authorAurélien Aptel <aurelien.aptel@gmail.com>
Thu, 20 Oct 2011 21:26:58 +0000 (23:26 +0200)
committerAurélien Aptel <aurelien.aptel@gmail.com>
Thu, 20 Oct 2011 21:26:58 +0000 (23:26 +0200)
st.c

diff --git a/st.c b/st.c
index ad6db0dbd2bb54e09b4fcfbb612925cddf694013..46f6d5b229a1ca77d729ae0215ed7ac3807b1623 100644 (file)
--- 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