comparison src/prefs.c @ 4438:2054d8429925

[gaim-migrate @ 4713] Setting the font face in preferences works again. Thanks CmdrChalupa. committer: Tailor Script <tailor@pidgin.im>
author Christian Hammond <chipx86@chipx86.com>
date Tue, 28 Jan 2003 02:45:34 +0000
parents 289efc79a242
children a65555132674
comparison
equal deleted inserted replaced
4437:f5c6e33b1013 4438:2054d8429925
2418 2418
2419 while(fontname[i] && !isdigit(fontname[i]) && i < sizeof(fontface)) { 2419 while(fontname[i] && !isdigit(fontname[i]) && i < sizeof(fontface)) {
2420 fontface[i] = fontname[i]; 2420 fontface[i] = fontname[i];
2421 i++; 2421 i++;
2422 } 2422 }
2423
2423 fontface[i] = 0; 2424 fontface[i] = 0;
2424 g_free(fontname); 2425 g_free(fontname);
2425 } 2426
2426 2427 gaim_conversation_foreach(gaim_gtkconv_update_font_face);
2428 }
2429