aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
Diffstat (limited to 'st.c')
-rw-r--r--st.c3
1 files changed, 2 insertions, 1 deletions
diff --git a/st.c b/st.c
index 4ead319..d9f0ba6 100644
--- a/st.c
+++ b/st.c
@@ -3852,7 +3852,8 @@ xdrawcursor(void)
3852 g.u = term.line[term.c.y][term.c.x].u; 3852 g.u = term.line[term.c.y][term.c.x].u;
3853 if (ena_sel && selected(term.c.x, term.c.y)) { 3853 if (ena_sel && selected(term.c.x, term.c.y)) {
3854 drawcol = dc.col[defaultrcs]; 3854 drawcol = dc.col[defaultrcs];
3855 g.mode ^= ATTR_REVERSE; 3855 g.fg = defaultfg;
3856 g.bg = defaultrcs;
3856 } else { 3857 } else {
3857 drawcol = dc.col[defaultcs]; 3858 drawcol = dc.col[defaultcs];
3858 } 3859 }