diff options
author | portix <none@none> | 2013-02-16 14:42:56 +0100 |
---|---|---|
committer | portix <none@none> | 2013-02-16 14:42:56 +0100 |
commit | 637936b5997d93be65c77154d0ee5664c5e37576 (patch) | |
tree | f3bff1ee1b5362bf4c0cf40f206e03ffd86e7dbf /src/view.c | |
parent | a628c3f21439a248d15e06d0d91d8ca6315e8aa9 (diff) | |
download | dwb-637936b5997d93be65c77154d0ee5664c5e37576.zip |
Emit statusBarChanged signal also if only uri has changed
Diffstat (limited to 'src/view.c')
-rw-r--r-- | src/view.c | 6 |
1 files changed, 3 insertions, 3 deletions
@@ -420,7 +420,7 @@ view_hovering_over_link_cb(WebKitWebView *web, char *title, char *uri, GList *gl { g_free(VIEW(gl)->status->hover_uri); VIEW(gl)->status->hover_uri = NULL; - dwb_update_uri(gl); + dwb_update_uri(gl, true); if (! (dwb.state.bar_visible & BAR_VIS_STATUS)) dom_remove_from_parent(WEBKIT_DOM_NODE(VIEW(gl)->hover.element), NULL); } @@ -680,7 +680,7 @@ view_title_cb(WebKitWebView *web, GParamSpec *pspec, GList *gl) static void view_uri_cb(WebKitWebView *web, GParamSpec *pspec, GList *gl) { - dwb_update_uri(gl); + dwb_update_uri(gl, true); }/*}}}*/ /* view_progress_cb {{{*/ @@ -1350,7 +1350,7 @@ view_ssl_state(GList *gl) } } v->status->ssl = ssl; - dwb_update_uri(gl); + dwb_update_uri(gl, true); }/*}}}*/ |