Propagate URI changes and update Back, Forward actions
Fixes: https://bugs.launchpad.net/midori/+bug/725826
This commit is contained in:
parent
312821b016
commit
0e30ea3779
2 changed files with 17 additions and 3 deletions
|
@ -557,15 +557,18 @@ midori_view_context_ready_cb (GtkWidget* view,
|
|||
}
|
||||
|
||||
static void
|
||||
midori_view_notify_uri_cb (GtkWidget* view,
|
||||
midori_view_notify_uri_cb (GtkWidget* widget,
|
||||
GParamSpec* pspec,
|
||||
MidoriBrowser* browser)
|
||||
{
|
||||
if (view == midori_browser_get_current_tab (browser))
|
||||
if (widget == midori_browser_get_current_tab (browser))
|
||||
{
|
||||
const gchar* uri = midori_view_get_display_uri (MIDORI_VIEW (view));
|
||||
MidoriView* view = MIDORI_VIEW (widget);
|
||||
const gchar* uri = midori_view_get_display_uri (view);
|
||||
GtkAction* action = _action_by_name (browser, "Location");
|
||||
midori_location_action_set_text (MIDORI_LOCATION_ACTION (action), uri);
|
||||
_action_set_sensitive (browser, "Back", midori_view_can_go_back (view));
|
||||
_action_set_sensitive (browser, "Forward", midori_view_can_go_forward (view));
|
||||
}
|
||||
}
|
||||
|
||||
|
|
|
@ -1556,6 +1556,15 @@ midori_web_view_notify_icon_uri_cb (WebKitWebView* web_view,
|
|||
#endif
|
||||
|
||||
#if WEBKIT_CHECK_VERSION (1, 1, 4)
|
||||
static void
|
||||
webkit_web_view_notify_uri_cb (WebKitWebView* web_view,
|
||||
GParamSpec* pspec,
|
||||
MidoriView* view)
|
||||
{
|
||||
katze_assign (view->uri, g_strdup (webkit_web_view_get_uri (web_view)));
|
||||
g_object_notify (G_OBJECT (view), "uri");
|
||||
}
|
||||
|
||||
static void
|
||||
webkit_web_view_notify_title_cb (WebKitWebView* web_view,
|
||||
GParamSpec* pspec,
|
||||
|
@ -3613,6 +3622,8 @@ midori_view_construct_web_view (MidoriView* view)
|
|||
midori_web_view_notify_icon_uri_cb, view,
|
||||
#endif
|
||||
#if WEBKIT_CHECK_VERSION (1, 1, 4)
|
||||
"signal::notify::uri",
|
||||
webkit_web_view_notify_uri_cb, view,
|
||||
"signal::notify::title",
|
||||
webkit_web_view_notify_title_cb, view,
|
||||
#else
|
||||
|
|
Loading…
Reference in a new issue