[yast-commit] r48565 - /trunk/gtk/src/ygtkrichtext.c
Author: rpmcruz Date: Thu Jun 26 19:47:52 2008 New Revision: 48565 URL: http://svn.opensuse.org/viewcvs/yast?rev=48565&view=rev Log: Extended foreground to the rest of the headers. Modified: trunk/gtk/src/ygtkrichtext.c Modified: trunk/gtk/src/ygtkrichtext.c URL: http://svn.opensuse.org/viewcvs/yast/trunk/gtk/src/ygtkrichtext.c?rev=48565&r1=48564&r2=48565&view=diff ============================================================================== --- trunk/gtk/src/ygtkrichtext.c (original) +++ trunk/gtk/src/ygtkrichtext.c Thu Jun 26 19:47:52 2008 @@ -131,13 +131,16 @@ "size", (int)(size * PANGO_SCALE_XX_LARGE), "pixels-below-lines", 16, "foreground", "#5c5c5c", NULL); gtk_text_buffer_create_tag (buffer, "h2", "weight", PANGO_WEIGHT_ULTRABOLD, - "size", (int)(size * PANGO_SCALE_X_LARGE), "pixels-below-lines", 15, NULL); + "size", (int)(size * PANGO_SCALE_X_LARGE), "pixels-below-lines", 15, + "foreground", "#5c5c5c", NULL); gtk_text_buffer_create_tag (buffer, "h3", "weight", PANGO_WEIGHT_BOLD, - "size", (int)(size * PANGO_SCALE_LARGE), "pixels-below-lines", 14, NULL); + "size", (int)(size * PANGO_SCALE_LARGE), "pixels-below-lines", 14, + "foreground", "#5c5c5c", NULL); gtk_text_buffer_create_tag (buffer, "h4", "weight", PANGO_WEIGHT_SEMIBOLD, - "size", (int)(size * PANGO_SCALE_LARGE), "pixels-below-lines", 13, NULL); + "size", (int)(size * PANGO_SCALE_LARGE), "pixels-below-lines", 13, + "foreground", "#5c5c5c", NULL); gtk_text_buffer_create_tag (buffer, "h5", - "size", (int)(size * PANGO_SCALE_LARGE), NULL); + "size", (int)(size * PANGO_SCALE_LARGE), "foreground", "#5c5c5c", NULL); gtk_text_buffer_create_tag (buffer, "p", "pixels-below-lines", 12, NULL); gtk_text_buffer_create_tag (buffer, "big", "size", (int)(size * PANGO_SCALE_LARGE), NULL); -- To unsubscribe, e-mail: yast-commit+unsubscribe@opensuse.org For additional commands, e-mail: yast-commit+help@opensuse.org
participants (1)
-
rpmcruz@svn.opensuse.org