Applying the patch to show the indicator only on loading. Based on a patch

from http://xteddy.org/surf.html#toc5.
This commit is contained in:
Christoph Lohmann 2012-10-28 14:06:17 +01:00
parent 3d3b105de7
commit 161247eaf4

11
surf.c
View file

@ -871,13 +871,16 @@ void
update(Client *c) {
char *t;
if(c->linkhover)
if(c->linkhover) {
t = g_strdup(c->linkhover);
else if(c->progress != 100)
} else if(c->progress != 100) {
drawindicator(c);
gtk_widget_show(c->indicator);
t = g_strdup_printf("[%i%%] %s", c->progress, c->title);
else
} else {
gtk_widget_hide_all(c->indicator);
t = g_strdup(c->title);
drawindicator(c);
}
gtk_window_set_title(GTK_WINDOW(c->win), t);
g_free(t);
}