]> spindle.queued.net Git - midori/commitdiff
Add an entry for fixed-with font size to the Preferences
authorChristian Dywan <christian@twotoasts.de>
Wed, 3 Jun 2009 20:00:29 +0000 (22:00 +0200)
committerChristian Dywan <christian@twotoasts.de>
Wed, 3 Jun 2009 20:00:29 +0000 (22:00 +0200)
midori/midori-preferences.c

index b3f22e43340ef40db3ce5176165817997f977c1c..a442c4b4ac7c4a72a9621dd43a6bb5ff7784211d 100644 (file)
@@ -452,9 +452,14 @@ midori_preferences_set_settings (MidoriPreferences* preferences,
     FILLED_ADD (hbox, 1, 2, 0, 1);
     label = gtk_label_new (_("Fixed-width Font Family"));
     INDENTED_ADD (label, 0, 1, 1, 2);
+    hbox = gtk_hbox_new (FALSE, 4);
     button = katze_property_proxy (settings, "monospace-font-family", "font");
     gtk_widget_set_tooltip_text (button, _("The font family used to display fixed-width text"));
-    INDENTED_ADD (button, 1, 2, 1, 2);
+    gtk_box_pack_start (GTK_BOX (hbox), button, TRUE, TRUE, 0);
+    entry = katze_property_proxy (settings, "default-monospace-font-size", NULL);
+    gtk_widget_set_tooltip_text (entry, _("The font size used to display fixed-width text"));
+    gtk_box_pack_end (GTK_BOX (hbox), entry, FALSE, FALSE, 4);
+    INDENTED_ADD (hbox, 1, 2, 1, 2);
     label = gtk_label_new (_("Minimum Font Size"));
     INDENTED_ADD (label, 0, 1, 2, 3);
     entry = katze_property_proxy (settings, "minimum-font-size", NULL);