diff options
author | Ivan Tham <pickfire@riseup.net> | 2015-12-02 21:16:23 +0800 |
---|---|---|
committer | Christoph Lohmann <20h@r-36.net> | 2015-12-12 11:54:28 +0100 |
commit | 9fa4ffef72308e75446aeeebc9d38140b7198640 (patch) | |
tree | 2d35c84f74840f13b44c7b9ade492886c4f800c0 | |
parent | 002e82d188d286f27ba5806939d51ed9df5857ef (diff) | |
download | surf-9fa4ffef72308e75446aeeebc9d38140b7198640.tar.gz surf-9fa4ffef72308e75446aeeebc9d38140b7198640.tar.bz2 surf-9fa4ffef72308e75446aeeebc9d38140b7198640.zip |
Fix title handling
1. file:/// stay the same when you navigate
2. Fix "http://~" to "file://~" in home dir
3. Expands "file://~" to "file://home/user"
Thanks to quinq for fixing the issue #1 in commit 934705c in surf2.
Signed-off-by: Christoph Lohmann <20h@r-36.net>
-rw-r--r-- | surf.c | 1 |
1 files changed, 1 insertions, 0 deletions
@@ -802,6 +802,7 @@ loadstatuschange(WebKitWebView *view, GParamSpec *pspec, Client *c) & SOUP_MESSAGE_CERTIFICATE_TRUSTED); } setatom(c, AtomUri, uri); + c->title = copystr(&c->title, uri); if (enablestyle) setstyle(c, getstyle(uri)); |