1 Commits

Author SHA1 Message Date
30dfe46914 Added anysize v.2022-07-18 patch 2023-06-27 21:57:35 +02:00

10
x.c
View File

@ -689,8 +689,6 @@ setsel(char *str, Time t)
XSetSelectionOwner(xw.dpy, XA_PRIMARY, xw.win, t);
if (XGetSelectionOwner(xw.dpy, XA_PRIMARY) != xw.win)
selclear();
xclipcopy();
}
void
@ -714,9 +712,7 @@ brelease(XEvent *e)
if (mouseaction(e, 1))
return;
if (btn == Button3)
selpaste(NULL);
else if (btn == Button1)
if (btn == Button1)
mousesel(e, 1);
}
@ -1437,6 +1433,10 @@ xdrawglyphfontspecs(const XftGlyphFontSpec *specs, Glyph base, int len, int x, i
bg = &dc.col[base.bg];
}
/* Change basic system colors [0-7] to bright system colors [8-15] */
if ((base.mode & ATTR_BOLD_FAINT) == ATTR_BOLD && BETWEEN(base.fg, 0, 7))
fg = &dc.col[base.fg + 8];
if (IS_SET(MODE_REVERSE)) {
if (fg == &dc.col[defaultfg]) {
fg = &dc.col[defaultbg];