diff --git a/_desktop/_suckless/st/README.md b/_desktop/_suckless/st/README.md index 8ccd000..4a183d7 100644 --- a/_desktop/_suckless/st/README.md +++ b/_desktop/_suckless/st/README.md @@ -9,3 +9,4 @@ These patches from suckless.org were applied from the newest versions, in order: 1. `st-scrollback-0.8.5.diff` 1. `st-externalpipe-0.8.4.diff` 1. `st-glyph-wide-support-20220411-ef05519.diff` +1. 'st-w3m-0.8.3.diff' diff --git a/_desktop/_suckless/st/x.c b/_desktop/_suckless/st/x.c index c2dd5a2..eb6052a 100644 --- a/_desktop/_suckless/st/x.c +++ b/_desktop/_suckless/st/x.c @@ -1752,6 +1752,8 @@ xsettitle(char *p) int xstartdraw(void) { + if (IS_SET(MODE_VISIBLE)) + XCopyArea(xw.dpy, xw.win, xw.buf, dc.gc, 0, 0, win.w, win.h, 0, 0); return IS_SET(MODE_VISIBLE); }