From: Christian Dywan Date: Sat, 19 Feb 2011 22:38:34 +0000 (+0100) Subject: Take text for Go button in location from the entry X-Git-Url: https://spindle.queued.net/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=71f89a3d8a4abbb6dd209d3dc9c3a7da23fddeb9;p=midori Take text for Go button in location from the entry --- diff --git a/midori/midori-browser.c b/midori/midori-browser.c index 087869aa..0974f9c9 100644 --- a/midori/midori-browser.c +++ b/midori/midori-browser.c @@ -3597,7 +3597,10 @@ _action_location_secondary_icon_released (GtkAction* action, } } else if (gtk_window_get_focus (GTK_WINDOW (browser)) == widget) - _action_location_submit_uri (action, uri, FALSE, browser); + { + const gchar* text = gtk_entry_get_text (GTK_ENTRY (widget)); + _action_location_submit_uri (action, text, FALSE, browser); + } else if ((feed = g_object_get_data (G_OBJECT (view), "news-feeds"))) { KatzeArray* news_feeds;