mirror of
https://github.com/alrayyes/st
synced 2023-11-14 15:56:30 +00:00
Resize now uses xclear().
This commit is contained in:
parent
1e7816c202
commit
de4cd2f6af
4
st.c
4
st.c
@ -2358,10 +2358,8 @@ xresize(int col, int row) {
|
|||||||
XFreePixmap(xw.dpy, xw.buf);
|
XFreePixmap(xw.dpy, xw.buf);
|
||||||
xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
|
xw.buf = XCreatePixmap(xw.dpy, xw.win, xw.w, xw.h,
|
||||||
DefaultDepth(xw.dpy, xw.scr));
|
DefaultDepth(xw.dpy, xw.scr));
|
||||||
XSetForeground(xw.dpy, dc.gc, dc.col[IS_SET(MODE_REVERSE) ? defaultfg : defaultbg].pixel);
|
|
||||||
XFillRectangle(xw.dpy, xw.buf, dc.gc, 0, 0, xw.w, xw.h);
|
|
||||||
|
|
||||||
XftDrawChange(xw.draw, xw.buf);
|
XftDrawChange(xw.draw, xw.buf);
|
||||||
|
xclear(0, 0, xw.w, xw.h);
|
||||||
}
|
}
|
||||||
|
|
||||||
static inline ushort
|
static inline ushort
|
||||||
|
Loading…
Reference in New Issue
Block a user