]> spindle.queued.net Git - midori/commitdiff
Presumably 'sans-serif' font is really 'sans'
authorChristian Dywan <christian@twotoasts.de>
Sat, 21 Nov 2009 19:21:26 +0000 (20:21 +0100)
committerChristian Dywan <christian@twotoasts.de>
Sun, 22 Nov 2009 04:12:13 +0000 (05:12 +0100)
We want to avoid an empty font combo box.

katze/katze-utils.c

index 5c8dc0358176cb0842bb55092c233fffe21e64bb..5f600427fdaf85fa5845f92eca25dbe379a81224 100644 (file)
@@ -586,6 +586,9 @@ katze_property_proxy (gpointer     object,
         pango_context_list_families (context, &families, &n_families);
         if (!string)
             string = g_strdup (G_PARAM_SPEC_STRING (pspec)->default_value);
+        /* 'sans' and 'sans-serif' are presumably the same */
+        if (!g_strcmp0 (string, "sans-serif"))
+            katze_assign (string, g_strdup ("sans"));
         if (string)
         {
             gint j = 0;