This website works better with JavaScript.
Home
Explore
Help
Sign In
Linux
/
st
generated from
gmarx/git-template
Watch
1
Star
0
Fork
0
Code
Issues
0
Pull Requests
0
Projects
0
Releases
0
Wiki
Activity
Browse Source
Fix the cursor colors selection
Signed-off-by: Christoph Lohmann <20h@r-36.net>
master
Quentin Rameau
9 years ago
committed by
Christoph Lohmann
parent
2ea02c937e
commit
293f573efd
1 changed files
with
2 additions
and
3 deletions
Split View
Diff Options
Show Stats
Download Patch File
Download Diff File
+2
-3
st.c
+ 2
- 3
st.c
View File
@ -3865,13 +3865,12 @@ xdrawcursor(void)
g
.
fg
=
defaultcs
;
}
}
else
{
g
.
fg
=
defaultfg
;
if
(
ena_sel
&
&
selected
(
term
.
c
.
x
,
term
.
c
.
y
)
)
{
g
.
bg
=
defaultcs
;
drawcol
=
dc
.
col
[
defaultrcs
]
;
g
.
fg
=
defaultfg
;
g
.
bg
=
defaultrcs
;
}
else
{
drawcol
=
dc
.
col
[
defaultcs
]
;
g
.
bg
=
defaultrcs
;
}
}
Write
Preview
Loading…
Cancel
Save