From 71f89a3d8a4abbb6dd209d3dc9c3a7da23fddeb9 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sat, 19 Feb 2011 23:38:34 +0100 Subject: [PATCH] Take text for Go button in location from the entry --- midori/midori-browser.c | 5 ++++- 1 file changed, 4 insertions(+), 1 deletion(-) 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; -- 2.39.5