From: Christian Dywan Date: Fri, 15 May 2009 15:30:54 +0000 (+0200) Subject: Make sure to only update the address entry with the current view X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=a6f2ca54e91e1c100b785dac746fad181eace601;p=midori Make sure to only update the address entry with the current view --- diff --git a/midori/midori-browser.c b/midori/midori-browser.c index 8cd62669..d9467a9d 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -514,10 +514,13 @@ midori_view_notify_uri_cb (GtkWidget* view, GParamSpec* pspec, MidoriBrowser* browser) { - const gchar* uri = midori_view_get_display_uri (MIDORI_VIEW (view)); - GtkAction* action = _action_by_name (browser, "Location"); - midori_location_action_set_uri (MIDORI_LOCATION_ACTION (action), uri); - _midori_browser_update_interface (browser); + if (view == midori_browser_get_current_tab (browser)) + { + const gchar* uri = midori_view_get_display_uri (MIDORI_VIEW (view)); + GtkAction* action = _action_by_name (browser, "Location"); + midori_location_action_set_uri (MIDORI_LOCATION_ACTION (action), uri); + _midori_browser_update_interface (browser); + } } static void