summaryrefslogtreecommitdiff
path: root/render/html.c
diff options
context:
space:
mode:
Diffstat (limited to 'render/html.c')
-rw-r--r--render/html.c7
1 files changed, 5 insertions, 2 deletions
diff --git a/render/html.c b/render/html.c
index 1d203f272..470d8166d 100644
--- a/render/html.c
+++ b/render/html.c
@@ -131,10 +131,13 @@ int html_convert(struct content *c, unsigned int width, unsigned int height)
c->width = c->data.html.layout->children->width;
c->height = c->data.html.layout->children->height;
- if (c->active == 0)
+ if (c->active == 0) {
c->status = CONTENT_STATUS_DONE;
- else
+ sprintf(c->status_message, "Document done");
+ } else {
c->status = CONTENT_STATUS_READY;
+ sprintf(c->status_message, "Fetching %u objects", c->active);
+ }
return 0;
}