added the xclearwin patch to fix dirty borders after changing colors

This commit is contained in:
Tristan Simas
2020-05-13 17:06:41 -04:00
parent c6c7c8541d
commit 24fa39b861
4 changed files with 11 additions and 1 deletions

7
x.c
View File

@ -831,6 +831,13 @@ xclear(int x1, int y1, int x2, int y2)
x1, y1, x2-x1, y2-y1);
}
void
xclearwin(void)
{
xclear(0, 0, win.w, win.h);
}
void
xhints(void)
{