fixed implementation for PANGO_ATTR_STRIKETHROUGH, spotted by Behdad

2007-03-13  Sven Neumann  <sven@gimp.org>

	* libgimpwidgets/gimpwidgets.c (gimp_label_set_attributes): 
fixed
	implementation for PANGO_ATTR_STRIKETHROUGH, spotted by Behdad
	Esfahbod.


svn path=/trunk/; revision=22107
This commit is contained in:
Sven Neumann
2007-03-13 07:22:25 +00:00
committed by Sven Neumann
parent 8374e79e49
commit 9dbebcab4a
2 changed files with 7 additions and 1 deletions

View File

@ -1749,7 +1749,7 @@ gimp_label_set_attributes (GtkLabel *label,
break;
case PANGO_ATTR_STRIKETHROUGH:
attr = pango_attr_underline_new (va_arg (args, gboolean));
attr = pango_attr_strikethrough_new (va_arg (args, gboolean));
break;
case PANGO_ATTR_RISE: