From 4b272c0459edbc9f9bf204d0f5f44c77cb8e9981 Mon Sep 17 00:00:00 2001 From: Christian Dywan Date: Fri, 29 Apr 2011 02:58:45 +0200 Subject: [PATCH] Don't ignore unset title but fallback to the URI --- midori/midori-view.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/midori/midori-view.c b/midori/midori-view.c index 087d4933..3ccfce09 100644 --- a/midori/midori-view.c +++ b/midori/midori-view.c @@ -626,7 +626,7 @@ midori_view_set_title (MidoriView* view, const gchar* title) const gchar* display_title; if (!title) - return; + title = view->uri; katze_assign (view->title, g_strdup (title));