]> spindle.queued.net Git - midori/commitdiff
Consider all about: URIs as blank
authorChristian Dywan <christian@twotoasts.de>
Sun, 24 Jul 2011 20:50:15 +0000 (22:50 +0200)
committerChristian Dywan <christian@twotoasts.de>
Sun, 24 Jul 2011 20:50:15 +0000 (22:50 +0200)
about:version is prominently not rendered as "" so we need
to check the prefix.

Fixes: https://bugs.launchpad.net/midori/+bug/784337
midori/midori-view.c

index cdc6883b6719e9a2454528b326bf4e0ad929db1f..0ef7af3f0688757cfc6e606663c5d4b7884e8861 100644 (file)
@@ -3943,9 +3943,12 @@ midori_view_set_uri (MidoriView*  view,
 gboolean
 midori_view_is_blank (MidoriView*  view)
 {
+    const gchar* uri;
+
     g_return_val_if_fail (MIDORI_IS_VIEW (view), TRUE);
 
-    return midori_view_get_display_uri (view)[0] == '\0';
+    uri = midori_view_get_display_uri (view);
+    return uri[0] == '\0' || g_str_has_prefix (uri, "about:");
 }
 
 /**