[gtk+] fontchooser: set the minimum size of the spinner to 1



commit ef77e4727c7d5935a17ebc52b9bfa7b19f72c7f7
Author: Alberto Ruiz <aruiz gnome org>
Date:   Fri Aug 2 15:56:54 2013 +0200

    fontchooser: set the minimum size of the spinner to 1

 gtk/gtkfontchooserwidget.c |    2 +-
 1 files changed, 1 insertions(+), 1 deletions(-)
---
diff --git a/gtk/gtkfontchooserwidget.c b/gtk/gtkfontchooserwidget.c
index a0dcc94..16f964d 100644
--- a/gtk/gtkfontchooserwidget.c
+++ b/gtk/gtkfontchooserwidget.c
@@ -537,7 +537,7 @@ gtk_font_chooser_widget_init (GtkFontChooserWidget *fontchooser)
 
   /* Set the upper values of the spin/scale with G_MAXINT / PANGO_SCALE */
   gtk_spin_button_set_range (GTK_SPIN_BUTTON (priv->size_spin),
-                            0.0, (gdouble)(G_MAXINT / PANGO_SCALE));
+                            1.0, (gdouble)(G_MAXINT / PANGO_SCALE));
   gtk_adjustment_set_upper (gtk_range_get_adjustment (GTK_RANGE (priv->size_slider)),
                            (gdouble)(G_MAXINT / PANGO_SCALE));
 


[Date Prev][Date Next]   [Thread Prev][Thread Next]   [Thread Index] [Date Index] [Author Index]