summaryrefslogtreecommitdiff
path: root/riscos
diff options
context:
space:
mode:
authorMichael Drake <tlsa@netsurf-browser.org>2008-03-10 12:41:41 +0000
committerMichael Drake <tlsa@netsurf-browser.org>2008-03-10 12:41:41 +0000
commit9d3b7b43fd7852ca2736ec9862f30f9d3cdf43aa (patch)
tree851bed9affc305ccfceca7cedb9b077713ceec8b /riscos
parentabd453166f8de6c0136f697765f327e33b7e3a27 (diff)
downloadnetsurf-9d3b7b43fd7852ca2736ec9862f30f9d3cdf43aa.tar.gz
netsurf-9d3b7b43fd7852ca2736ec9862f30f9d3cdf43aa.tar.bz2
Update status bar when standalone images are done.
svn path=/trunk/netsurf/; revision=3917
Diffstat (limited to 'riscos')
-rw-r--r--riscos/artworks.c2
-rw-r--r--riscos/draw.c2
-rw-r--r--riscos/sprite.c2
3 files changed, 6 insertions, 0 deletions
diff --git a/riscos/artworks.c b/riscos/artworks.c
index add194a94..5dea449c9 100644
--- a/riscos/artworks.c
+++ b/riscos/artworks.c
@@ -196,6 +196,8 @@ bool artworks_convert(struct content *c, int width, int height)
snprintf(c->title, 100, messages_get("ArtWorksTitle"), c->width,
c->height, c->source_size);
c->status = CONTENT_STATUS_DONE;
+ /* Done: update status bar */
+ content_set_status(c, "");
return true;
}
diff --git a/riscos/draw.c b/riscos/draw.c
index 50bf67a97..fcf954131 100644
--- a/riscos/draw.c
+++ b/riscos/draw.c
@@ -72,6 +72,8 @@ bool draw_convert(struct content *c, int width, int height)
snprintf(c->title, 100, messages_get("DrawTitle"), c->width,
c->height, c->source_size);
c->status = CONTENT_STATUS_DONE;
+ /* Done: update status bar */
+ content_set_status(c, "");
return true;
}
diff --git a/riscos/sprite.c b/riscos/sprite.c
index 18bebf3e7..7867c8b1d 100644
--- a/riscos/sprite.c
+++ b/riscos/sprite.c
@@ -85,6 +85,8 @@ bool sprite_convert(struct content *c, int width, int height)
snprintf(c->title, 100, messages_get("SpriteTitle"), c->width,
c->height, c->source_size);
c->status = CONTENT_STATUS_DONE;
+ /* Done: update status bar */
+ content_set_status(c, "");
return true;
}