summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDon Scorgie <dscorgie@src.gnome.org>2006-01-28 19:46:37 +0000
committerDon Scorgie <dscorgie@src.gnome.org>2006-01-28 19:46:37 +0000
commit75e420e5091d458f988334c6caa29ffc37edf741 (patch)
treed25d3e74c6491faf5d5a7c7fdb48fe45f0556373
parent5c8b49eb80fd8f920a49994b6e35f3aa5991cf8e (diff)
downloadyelp-75e420e5091d458f988334c6caa29ffc37edf741.tar.gz
...then make the change actually work...
-rw-r--r--src/yelp-search-pager.c6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/yelp-search-pager.c b/src/yelp-search-pager.c
index d0be3724..3a38bfdc 100644
--- a/src/yelp-search-pager.c
+++ b/src/yelp-search-pager.c
@@ -1188,8 +1188,12 @@ slow_search_process (YelpSearchPager *pager)
pending_searches = g_slist_remove_link (pending_searches, first);
- if (first == NULL)
+ if (first == NULL) {
+ gtk_idle_add_priority (G_PRIORITY_LOW,
+ (GtkFunction) process_xslt,
+ pager);
return FALSE;
+ }
c = (SearchContainer *) first->data;