Be more efficient in blinking.

This commit is contained in:
Christoph Lohmann 2013-04-26 18:55:40 +02:00
parent 1e09726518
commit a77b01176a
1 changed files with 7 additions and 3 deletions

10
st.c
View File

@ -3442,9 +3442,13 @@ run(void) {
if(xev && !FD_ISSET(xfd, &rfd)) if(xev && !FD_ISSET(xfd, &rfd))
xev--; xev--;
if(!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd) \ if(!FD_ISSET(cmdfd, &rfd) && !FD_ISSET(xfd, &rfd)) {
&& !blinkset) { if(blinkset) {
tv = NULL; drawtimeout.tv_usec = 1000 * \
blinktimeout;
} else {
tv = NULL;
}
} }
} }
} }