diff options
| author | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-07-17 20:01:58 +0200 | 
|---|---|---|
| committer | Hiltjo Posthuma <hiltjo@codemadness.org> | 2018-07-17 20:01:58 +0200 | 
| commit | 4f4bccd1627c845330235721f593d2e93418723d (patch) | |
| tree | 920410155c668968d28c1a6a62953c827ff27bb8 | |
| parent | 8ed7a4b3b755407a7724a586ef224051bc306f4f (diff) | |
| download | st-transparency-4f4bccd1627c845330235721f593d2e93418723d.tar.gz st-transparency-4f4bccd1627c845330235721f593d2e93418723d.tar.xz st-transparency-4f4bccd1627c845330235721f593d2e93418723d.zip  | |
Revert "Simplify cursor color handling"
This reverts commit 1911c9274d9b03f3d7999c6ce26e2d5169642d26.
| -rw-r--r-- | x.c | 30 | 
1 files changed, 18 insertions, 12 deletions
@@ -1418,19 +1418,25 @@ xdrawcursor(int cx, int cy, Glyph g, int ox, int oy, Glyph og)  	 */  	g.mode &= ATTR_BOLD|ATTR_ITALIC|ATTR_UNDERLINE|ATTR_STRUCK|ATTR_WIDE; -	if (selected(cx, cy)) { -		g.bg = defaultrcs; -		g.fg = defaultfg; -	} else { -		g.bg = defaultcs; -		g.fg = defaultbg; -	} -	drawcol = dc.col[g.bg]; -  	if (IS_SET(MODE_REVERSE)) { -		drawcol.color.red = ~drawcol.color.red; -		drawcol.color.green = ~drawcol.color.green; -		drawcol.color.blue = ~drawcol.color.blue; +		g.mode |= ATTR_REVERSE; +		g.bg = defaultfg; +		if (selected(cx, cy)) { +			drawcol = dc.col[defaultcs]; +			g.fg = defaultrcs; +		} else { +			drawcol = dc.col[defaultrcs]; +			g.fg = defaultcs; +		} +	} else { +		if (selected(cx, cy)) { +			g.fg = defaultfg; +			g.bg = defaultrcs; +		} else { +			g.fg = defaultbg; +			g.bg = defaultcs; +		} +		drawcol = dc.col[g.bg];  	}  	/* draw the new one */  | 
