aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--st.c10
1 files changed, 7 insertions, 3 deletions
diff --git a/st.c b/st.c
index 8065ebe..07940d2 100644
--- a/st.c
+++ b/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;
+ }
}
}
}