commit b63b8cf621d4e2212c98d234a11090a44c2da31a
parent 1a71e4575bf6e0050e6cdf7ebce9cdf0ad9da854
Author: siduck76 <siduckk76@protonmail.com>
Date: Thu, 31 Dec 2020 19:52:15 +0530
w3m causing weird chars
Diffstat:
2 files changed, 2 insertions(+), 2 deletions(-)
diff --git a/x.c b/x.c
@@ -1719,8 +1719,6 @@ 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);
}
diff --git a/x.c.orig b/x.c.orig
@@ -1719,6 +1719,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);
}