Mercurial > pidgin
changeset 5118:c4664c2bfbf8
[gaim-migrate @ 5481]
that commit caused 1)timestamps to look like squiggles before the nick and 2)crashes on /join
thus it is now reversed.
committer: Tailor Script <tailor@pidgin.im>
author | Luke Schierer <lschiere@pidgin.im> |
---|---|
date | Sun, 13 Apr 2003 14:04:45 +0000 |
parents | be43e51c523c |
children | d905ba54a9db |
files | src/gtkimhtml.c |
diffstat | 1 files changed, 1 insertions(+), 4 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkimhtml.c Sun Apr 13 01:42:18 2003 +0000 +++ b/src/gtkimhtml.c Sun Apr 13 14:04:45 2003 +0000 @@ -825,10 +825,7 @@ gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ } \ if (fd->size) { \ - gushort points; \ - /* only do the POINT_SIZE converstion for AIM/ICQ */ \ - points = (strcmp(fd->sml, "AIM/ICQ") == 0) ? POINT_SIZE(fd->size) : fd->size; \ - texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "size-points", (double)points, NULL); \ + texttag = gtk_text_buffer_create_tag(imhtml->text_buffer, NULL, "size-points", (double)POINT_SIZE(fd->size), NULL); \ gtk_text_buffer_apply_tag(imhtml->text_buffer, texttag, &siter, &iter); \ } \ } \