From 93e846bf47e0664fd207036b9950b0c7e92129a5 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Sat, 3 Oct 2009 02:16:15 +0200 Subject: [PATCH] Display IDN hostnames decoded in address completion --- midori/midori-locationaction.c | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/midori/midori-locationaction.c b/midori/midori-locationaction.c index ffda4453..f19f0d9b 100644 --- a/midori/midori-locationaction.c +++ b/midori/midori-locationaction.c @@ -619,6 +619,7 @@ midori_location_entry_render_text_cb (GtkCellLayout* layout, GtkTreeIter* iter, gpointer data) { + gchar* uri_raw; gchar* uri; gchar* title; gchar* desc; @@ -632,7 +633,14 @@ midori_location_entry_render_text_cb (GtkCellLayout* layout, gchar** parts; size_t len; - gtk_tree_model_get (model, iter, URI_COL, &uri, TITLE_COL, &title, -1); + gtk_tree_model_get (model, iter, URI_COL, &uri_raw, TITLE_COL, &title, -1); + + #if GLIB_CHECK_VERSION (2, 22, 0) + uri = g_hostname_to_unicode (uri_raw); + g_free (uri_raw); + #else + uri = uri_raw; + #endif desc = desc_uri = desc_title = key = NULL; if (G_LIKELY (data))