summaryrefslogtreecommitdiff
path: root/surf.c
diff options
context:
space:
mode:
authorEnno Boland (tox) <tox@s01.de>2009-10-28 12:17:15 +0100
committerEnno Boland (tox) <tox@s01.de>2009-10-28 12:17:15 +0100
commit45014088088a8984785c612f1ccceb011a1435bf (patch)
treeca13b2f6baa05aec4b10856092d671353b5adba5 /surf.c
parent742fc7fac15ab2b67090e98a661b2ffc8a0bd5b8 (diff)
downloadsurf-45014088088a8984785c612f1ccceb011a1435bf.tar.gz
surf-45014088088a8984785c612f1ccceb011a1435bf.tar.bz2
surf-45014088088a8984785c612f1ccceb011a1435bf.zip
displaying progress before pagetitle.
Diffstat (limited to 'surf.c')
-rw-r--r--surf.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/surf.c b/surf.c
index 722d739..f5c9ebf 100644
--- a/surf.c
+++ b/surf.c
@@ -763,7 +763,7 @@ update(Client *c) {
char *t;
if(c->progress != 100)
- t = g_strdup_printf("%s [%i%%]", c->title, c->progress);
+ t = g_strdup_printf("[%i%%] %s", c->progress, c->title);
else if(c->linkhover)
t = g_strdup(c->linkhover);
else