diff options
Diffstat (limited to 'st.c')
| -rw-r--r-- | st.c | 3 | 
1 files changed, 3 insertions, 0 deletions
| @@ -1839,6 +1839,9 @@ void  xresize(int col, int row) {  	xw.w = MAX(1, 2*BORDER + col * xw.cw);  	xw.h = MAX(1, 2*BORDER + row * xw.ch); +	XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, +		       DisplayWidth(xw.dpy, xw.scr), +		       DisplayHeight(xw.dpy, xw.scr));  }  void | 
