mirror of
https://github.com/mintycube/st.git
synced 2024-10-22 14:05:49 +02:00
dynamic cursor color: trying out JuanScerriE's proposed amendment for the patch ref. #10
This commit is contained in:
parent
5452c4f4d3
commit
d50ebeef66
19
x.c
19
x.c
@ -2034,18 +2034,21 @@ xdrawcursor(int cx, int cy, Glyph g, int ox, int oy, Glyph og)
|
|||||||
if (selected(cx, cy)) {
|
if (selected(cx, cy)) {
|
||||||
g.fg = defaultfg;
|
g.fg = defaultfg;
|
||||||
g.bg = defaultrcs;
|
g.bg = defaultrcs;
|
||||||
} else {
|
}
|
||||||
#if DYNAMIC_CURSOR_COLOR_PATCH
|
#if !DYNAMIC_CURSOR_COLOR_PATCH
|
||||||
|
else {
|
||||||
|
g.fg = defaultbg;
|
||||||
|
g.bg = defaultcs;
|
||||||
|
}
|
||||||
|
|
||||||
|
drawcol = dc.col[g.bg];
|
||||||
|
#else
|
||||||
|
else if (!(og.mode & ATTR_REVERSE)) {
|
||||||
unsigned int tmpcol = g.bg;
|
unsigned int tmpcol = g.bg;
|
||||||
g.bg = g.fg;
|
g.bg = g.fg;
|
||||||
g.fg = tmpcol;
|
g.fg = tmpcol;
|
||||||
#else
|
|
||||||
g.fg = defaultbg;
|
|
||||||
g.bg = defaultcs;
|
|
||||||
#endif // DYNAMIC_CURSOR_COLOR_PATCH
|
|
||||||
}
|
}
|
||||||
|
|
||||||
#if DYNAMIC_CURSOR_COLOR_PATCH
|
|
||||||
if (IS_TRUECOL(g.bg)) {
|
if (IS_TRUECOL(g.bg)) {
|
||||||
colbg.alpha = 0xffff;
|
colbg.alpha = 0xffff;
|
||||||
colbg.red = TRUERED(g.bg);
|
colbg.red = TRUERED(g.bg);
|
||||||
@ -2054,8 +2057,6 @@ xdrawcursor(int cx, int cy, Glyph g, int ox, int oy, Glyph og)
|
|||||||
XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &drawcol);
|
XftColorAllocValue(xw.dpy, xw.vis, xw.cmap, &colbg, &drawcol);
|
||||||
} else
|
} else
|
||||||
drawcol = dc.col[g.bg];
|
drawcol = dc.col[g.bg];
|
||||||
#else
|
|
||||||
drawcol = dc.col[g.bg];
|
|
||||||
#endif // DYNAMIC_CURSOR_COLOR_PATCH
|
#endif // DYNAMIC_CURSOR_COLOR_PATCH
|
||||||
}
|
}
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user