diff options
-rw-r--r-- | ChangeLog | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-10 | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-4 | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-6 | 3 | ||||
-rw-r--r-- | ChangeLog.pre-2-8 | 3 | ||||
-rw-r--r-- | gtk/gtkcolorsel.c | 1 |
6 files changed, 16 insertions, 0 deletions
@@ -1,5 +1,8 @@ 2003-07-23 Matthias Clasen <maclas@gmx.de> + * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue + spinbutton wrap. (#118097, John Darrington) + * docs/faq/gtk-faq.sgml: Mention Xnest as a way to debug GTK+ apps. 2003-07-20 Hans Breuer <hans@breuer.org> diff --git a/ChangeLog.pre-2-10 b/ChangeLog.pre-2-10 index e2a364a10a..97fb10a0b7 100644 --- a/ChangeLog.pre-2-10 +++ b/ChangeLog.pre-2-10 @@ -1,5 +1,8 @@ 2003-07-23 Matthias Clasen <maclas@gmx.de> + * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue + spinbutton wrap. (#118097, John Darrington) + * docs/faq/gtk-faq.sgml: Mention Xnest as a way to debug GTK+ apps. 2003-07-20 Hans Breuer <hans@breuer.org> diff --git a/ChangeLog.pre-2-4 b/ChangeLog.pre-2-4 index e2a364a10a..97fb10a0b7 100644 --- a/ChangeLog.pre-2-4 +++ b/ChangeLog.pre-2-4 @@ -1,5 +1,8 @@ 2003-07-23 Matthias Clasen <maclas@gmx.de> + * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue + spinbutton wrap. (#118097, John Darrington) + * docs/faq/gtk-faq.sgml: Mention Xnest as a way to debug GTK+ apps. 2003-07-20 Hans Breuer <hans@breuer.org> diff --git a/ChangeLog.pre-2-6 b/ChangeLog.pre-2-6 index e2a364a10a..97fb10a0b7 100644 --- a/ChangeLog.pre-2-6 +++ b/ChangeLog.pre-2-6 @@ -1,5 +1,8 @@ 2003-07-23 Matthias Clasen <maclas@gmx.de> + * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue + spinbutton wrap. (#118097, John Darrington) + * docs/faq/gtk-faq.sgml: Mention Xnest as a way to debug GTK+ apps. 2003-07-20 Hans Breuer <hans@breuer.org> diff --git a/ChangeLog.pre-2-8 b/ChangeLog.pre-2-8 index e2a364a10a..97fb10a0b7 100644 --- a/ChangeLog.pre-2-8 +++ b/ChangeLog.pre-2-8 @@ -1,5 +1,8 @@ 2003-07-23 Matthias Clasen <maclas@gmx.de> + * gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue + spinbutton wrap. (#118097, John Darrington) + * docs/faq/gtk-faq.sgml: Mention Xnest as a way to debug GTK+ apps. 2003-07-20 Hans Breuer <hans@breuer.org> diff --git a/gtk/gtkcolorsel.c b/gtk/gtkcolorsel.c index 0d481d2f04..d493484810 100644 --- a/gtk/gtkcolorsel.c +++ b/gtk/gtkcolorsel.c @@ -1863,6 +1863,7 @@ gtk_color_selection_init (GtkColorSelection *colorsel) make_label_spinbutton (colorsel, &priv->hue_spinbutton, _("_Hue:"), table, 0, 0, COLORSEL_HUE, _("Position on the color wheel.")); + gtk_spin_button_set_wrap (GTK_SPIN_BUTTON (priv->hue_spinbutton), TRUE); make_label_spinbutton (colorsel, &priv->sat_spinbutton, _("_Saturation:"), table, 0, 1, COLORSEL_SATURATION, _("\"Deepness\" of the color.")); make_label_spinbutton (colorsel, &priv->val_spinbutton, _("_Value:"), table, 0, 2, COLORSEL_VALUE, |