displaying progress before pagetitle.

This commit is contained in:
Enno Boland (tox) 2009-10-28 12:17:15 +01:00
parent 742fc7fac1
commit 4501408808
1 changed files with 1 additions and 1 deletions

2
surf.c
View File

@ -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