summaryrefslogtreecommitdiff
path: root/src/view.c
diff options
context:
space:
mode:
authorportix <none@none>2013-02-16 14:42:56 +0100
committerportix <none@none>2013-02-16 14:42:56 +0100
commit637936b5997d93be65c77154d0ee5664c5e37576 (patch)
treef3bff1ee1b5362bf4c0cf40f206e03ffd86e7dbf /src/view.c
parenta628c3f21439a248d15e06d0d91d8ca6315e8aa9 (diff)
downloaddwb-637936b5997d93be65c77154d0ee5664c5e37576.zip
Emit statusBarChanged signal also if only uri has changed
Diffstat (limited to 'src/view.c')
-rw-r--r--src/view.c6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/view.c b/src/view.c
index a163b734..cdccbf5c 100644
--- a/src/view.c
+++ b/src/view.c
@@ -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);
}/*}}}*/