use %02x instead of %2x when formatting color for rc file
2003-05-30 Radek Doulik <rodo@ximian.com> * mail-config.c (config_write_style): use %02x instead of %2x when formatting color for rc file svn path=/trunk/; revision=21356
This commit is contained in:
committed by
Radek Doulik
parent
b732aa4bbb
commit
6bdca62695
@ -1,3 +1,8 @@
|
||||
2003-05-30 Radek Doulik <rodo@ximian.com>
|
||||
|
||||
* mail-config.c (config_write_style): use %02x instead of %2x when
|
||||
formatting color for rc file
|
||||
|
||||
2003-05-29 Jeffrey Stedfast <fejj@ximian.com>
|
||||
|
||||
Fixes bug #43805.
|
||||
|
||||
@ -466,7 +466,7 @@ config_write_style (void)
|
||||
blue = gconf_client_get_int (config->gconf, "/GNOME/Spell/spell_error_color_blue", NULL);
|
||||
|
||||
fprintf (rc, "style \"evolution-mail-custom-fonts\" {\n");
|
||||
fprintf (rc, " GtkHTML::spell_error_color = \"#%2x%2x%2x\"\n",
|
||||
fprintf (rc, " GtkHTML::spell_error_color = \"#%02x%02x%02x\"\n",
|
||||
red >> 8, green >> 8, blue >> 8);
|
||||
|
||||
if (custom && var_font && fix_font) {
|
||||
|
||||
Reference in New Issue
Block a user