mirror of
https://github.com/alrayyes/st
synced 2023-11-14 15:56:30 +00:00
Be more efficient in blinking.
This commit is contained in:
parent
1e09726518
commit
a77b01176a
10
st.c
10
st.c
@ -3442,9 +3442,13 @@ run(void) {
|
||||
|
||||
if(xev && !FD_ISSET(xfd, &rfd))
|
||||
xev--;
|
||||
if(!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd) \
|
||||
&& !blinkset) {
|
||||
tv = NULL;
|
||||
if(!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd)) {
|
||||
if(blinkset) {
|
||||
drawtimeout.tv_usec = 1000 * \
|
||||
blinktimeout;
|
||||
} else {
|
||||
tv = NULL;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
Loading…
Reference in New Issue
Block a user