Make the hue spinbutton wrap. (#118097, John Darrington)

2003-07-23  Matthias Clasen  <maclas@gmx.de>

	* gtk/gtkcolorsel.c (gtk_color_selection_init): Make the hue
	spinbutton wrap.  (#118097, John Darrington)
This commit is contained in:
Matthias Clasen 2003-07-23 21:00:15 +00:00 committed by Matthias Clasen
parent 1e61721472
commit d5d9ecbf80
6 changed files with 16 additions and 0 deletions

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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>

View File

@ -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,