From e0d08920657e8e5132a732c2f429243efa899ac1 Mon Sep 17 00:00:00 2001 From: Bert Date: Wed, 16 Feb 2011 23:03:42 +0100 Subject: Use pthread to load thumbnails --- main.c | 7 +++++-- 1 file changed, 5 insertions(+), 2 deletions(-) (limited to 'main.c') diff --git a/main.c b/main.c index 4d66595..2fccf7a 100644 --- a/main.c +++ b/main.c @@ -473,19 +473,22 @@ void run() { timeout = 0; while (1) { - if (timeout) { + if (timeout || (mode == MODE_THUMBS && !tns.loaded)) { t.tv_sec = 0; t.tv_usec = 250; xfd = ConnectionNumber(win.env.dpy); FD_ZERO(&fds); FD_SET(xfd, &fds); - + if (!XPending(win.env.dpy) && !select(xfd + 1, &fds, 0, 0, &t)) { timeout = 0; if (mode == MODE_NORMAL) img_render(&img, &win); else tns_render(&tns, &win); + + if (mode == MODE_THUMBS && !tns.loaded && !XPending(win.env.dpy)) + continue; } } -- cgit v1.2.3-54-g00ecf