diff options
| author | 2012-01-17 13:54:35 +0100 | |
|---|---|---|
| committer | 2012-01-17 13:54:35 +0100 | |
| commit | e75753775ff77bb7c31019ef1dd924e5cc912eb8 (patch) | |
| tree | cd98e98e7f6891b205084c2cf4d6d191066f37b6 | |
| parent | link Xlib in config.mk (diff) | |
Status message patch from Jeremy Jackins and skls.
| -rw-r--r-- | surf.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -793,10 +793,10 @@ void update(Client *c) { char *t; - if(c->progress != 100) - t = g_strdup_printf("[%i%%] %s", c->progress, c->title); - else if(c->linkhover) + if(c->linkhover) t = g_strdup(c->linkhover); + else if(c->progress != 100) + t = g_strdup_printf("[%i%%] %s", c->progress, c->title); else t = g_strdup(c->title); drawindicator(c); |
