Make the fontchooser dialog come up in a reasonable size

This is not a perfect solution; we really just want to set
a nice default size, but GTK+ does not make that easy.
This commit is contained in:
Matthias Clasen 2011-08-09 16:13:58 +02:00
parent 7c4ad1f400
commit 6fb69845b0

View File

@ -573,6 +573,7 @@ gtk_font_chooser_init (GtkFontChooser *fontchooser)
GTK_POLICY_NEVER, GTK_POLICY_AUTOMATIC);
gtk_scrolled_window_set_shadow_type (GTK_SCROLLED_WINDOW (scrolled_win),
GTK_SHADOW_ETCHED_IN);
gtk_widget_set_size_request (scrolled_win, 400, 300);
gtk_container_add (GTK_CONTAINER (scrolled_win),
priv->family_face_list);