aboutsummaryrefslogtreecommitdiff
path: root/st.c
diff options
context:
space:
mode:
authorAurélien Aptel <aurelien.aptel@gmail.com>2012-02-15 19:33:48 +0100
committerAurélien Aptel <aurelien.aptel@gmail.com>2012-02-15 19:33:48 +0100
commitbe2877cd042eaf5d0f7dda102f526357aa577232 (patch)
treed4da30d5797e6b9ebece1d3b0348631ac906acfd /st.c
parentd8e11bdb0ecbccbaab7d944a577b9557ccff5d52 (diff)
downloadst-be2877cd042eaf5d0f7dda102f526357aa577232.tar.gz
st-be2877cd042eaf5d0f7dda102f526357aa577232.zip
show dark cursor when unfocused.
Diffstat (limited to 'st.c')
-rw-r--r--st.c8
1 files changed, 6 insertions, 2 deletions
diff --git a/st.c b/st.c
index 627e566..a86e0f9 100644
--- a/st.c
+++ b/st.c
@@ -1826,10 +1826,14 @@ xdrawcursor(void) {
1826 xcopy(oldx, oldy, 1, 1); 1826 xcopy(oldx, oldy, 1, 1);
1827 1827
1828 /* draw the new one */ 1828 /* draw the new one */
1829 if(!(term.c.state & CURSOR_HIDE) && (xw.state & WIN_FOCUSED)) { 1829 if(!(term.c.state & CURSOR_HIDE)) {
1830 sl = utf8size(g.c); 1830 if(!(xw.state & WIN_FOCUSED))
1831 g.bg = DefaultUCS;
1832
1831 if(IS_SET(MODE_REVERSE)) 1833 if(IS_SET(MODE_REVERSE))
1832 g.mode |= ATTR_REVERSE, g.fg = DefaultCS, g.bg = DefaultFG; 1834 g.mode |= ATTR_REVERSE, g.fg = DefaultCS, g.bg = DefaultFG;
1835
1836 sl = utf8size(g.c);
1833 xdraws(g.c, g, term.c.x, term.c.y, 1, sl); 1837 xdraws(g.c, g, term.c.x, term.c.y, 1, sl);
1834 oldx = term.c.x, oldy = term.c.y; 1838 oldx = term.c.x, oldy = term.c.y;
1835 } 1839 }