Surf has had an annoying bug for a long time where a fully loaded page would always have the title set to "[0%] <page title>". This fixes that.
diff -r 51a6d05c2c84 surf.c
--- a/surf.c Mon Mar 26 09:33:42 2012 +0200
+++ b/surf.c Sat Apr 07 23:52:23 2012 +0100
@@ -801,7 +801,7 @@
if(c->linkhover)
t = g_strdup(c->linkhover);
- else if(c->progress != 100)
+ else if(c->progress && c->progress != 100)
t = g_strdup_printf("[%i%%] %s", c->progress, c->title);
else
t = g_strdup(c->title);
pgpE5LLUe3E6u.pgp
Description: PGP signature
