Don't restrict the minimum font size.

This commit is contained in:
Nicholas E. Manley 2008-02-11 07:37:29 +01:00 committed by Christian Dywan
parent fbcd3a9680
commit 622f8ee445
1 changed files with 1 additions and 1 deletions

View File

@ -435,7 +435,7 @@ GtkWidget* prefs_preferences_dialog_new(CBrowser* browser)
FILLED_ADD(button, 1, 2, 0, 1);
INDENTED_ADD(gtk_label_new_with_mnemonic("_Minimum font size"), 0, 1, 1, 2);
hbox = gtk_hbox_new(FALSE, 4);
spinbutton = gtk_spin_button_new_with_range(1, 5, 1);
spinbutton = gtk_spin_button_new_with_range(1, G_MAXINT, 1);
gtk_spin_button_set_value(GTK_SPIN_BUTTON(spinbutton), config->minimumFontSize);
g_signal_connect(spinbutton, "value-changed"
, G_CALLBACK(on_prefs_minimumFontSize_changed), prefs);