aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--st.c3
1 files changed, 3 insertions, 0 deletions
diff --git a/st.c b/st.c
index b2e5e22..20e4512 100644
--- a/st.c
+++ b/st.c
@@ -1839,6 +1839,9 @@ void
1839xresize(int col, int row) { 1839xresize(int col, int row) {
1840 xw.w = MAX(1, 2*BORDER + col * xw.cw); 1840 xw.w = MAX(1, 2*BORDER + col * xw.cw);
1841 xw.h = MAX(1, 2*BORDER + row * xw.ch); 1841 xw.h = MAX(1, 2*BORDER + row * xw.ch);
1842 XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0,
1843 DisplayWidth(xw.dpy, xw.scr),
1844 DisplayHeight(xw.dpy, xw.scr));
1842} 1845}
1843 1846
1844void 1847void