From 218e0b9929f19bb8cbcec1814ebb36d3a6d5aa12 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Timm=20B=C3=A4der?= Date: Sat, 13 May 2017 22:05:27 +0200 Subject: [PATCH] spinbutton: Use 0 as default for (max-)width-chars This mimics the old spinbutton size request better. --- gtk/gtkspinbutton.c | 6 ++++-- 1 file changed, 4 insertions(+), 2 deletions(-) diff --git a/gtk/gtkspinbutton.c b/gtk/gtkspinbutton.c index 488bca623c..9b349a4148 100644 --- a/gtk/gtkspinbutton.c +++ b/gtk/gtkspinbutton.c @@ -404,7 +404,7 @@ gtk_spin_button_class_init (GtkSpinButtonClass *class) P_("Width in chars"), P_("Number of characters to leave space for in the entry"), -1, G_MAXINT, - -1, + 0, GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY)); g_object_class_install_property (gobject_class, @@ -413,7 +413,7 @@ gtk_spin_button_class_init (GtkSpinButtonClass *class) P_("Maximum width in characters"), P_("The desired maximum width of the entry, in characters"), -1, G_MAXINT, - -1, + 0, GTK_PARAM_READWRITE|G_PARAM_EXPLICIT_NOTIFY)); g_object_class_install_property (gobject_class, @@ -868,6 +868,8 @@ gtk_spin_button_init (GtkSpinButton *spin_button) priv->box = gtk_box_new (priv->orientation, 0); gtk_widget_set_parent (priv->box, GTK_WIDGET (spin_button)); priv->entry = gtk_entry_new (); + gtk_entry_set_width_chars (GTK_ENTRY (priv->entry), 0); + gtk_entry_set_max_width_chars (GTK_ENTRY (priv->entry), 0); g_signal_connect (priv->entry, "activate", G_CALLBACK (gtk_spin_button_activate), spin_button); gtk_container_add (GTK_CONTAINER (priv->box), priv->entry);