summaryrefslogtreecommitdiff
path: root/render
diff options
context:
space:
mode:
authorRichard Wilson <rjw@netsurf-browser.org>2006-07-04 21:01:17 +0000
committerRichard Wilson <rjw@netsurf-browser.org>2006-07-04 21:01:17 +0000
commitff6694c1088a4f8ed7ff708ea86f0866d2a0ab10 (patch)
treee38980bc4251fd7fbd6ef58b1bfb6fad0a3e68a6 /render
parent667c3b67304906e281faa7dbde36d454bddce576 (diff)
downloadnetsurf-ff6694c1088a4f8ed7ff708ea86f0866d2a0ab10.tar.gz
netsurf-ff6694c1088a4f8ed7ff708ea86f0866d2a0ab10.tar.bz2
Set correct message on TEXTPLAIN completion (fix 1484874)
svn path=/trunk/netsurf/; revision=2712
Diffstat (limited to 'render')
-rw-r--r--render/textplain.c1
1 files changed, 1 insertions, 0 deletions
diff --git a/render/textplain.c b/render/textplain.c
index d2c3db956..ff6ca2f9d 100644
--- a/render/textplain.c
+++ b/render/textplain.c
@@ -168,6 +168,7 @@ bool textplain_convert(struct content *c, int width, int height)
textplain_reformat(c, width, height);
c->status = CONTENT_STATUS_DONE;
+ content_set_status(c, messages_get("Done"));
return true;
}