# HG changeset patch # User Luke Schierer # Date 1050242685 0 # Node ID c4664c2bfbf83e4438e93d26429e2eb9c92bb406 # Parent be43e51c523cb4359b6d8089dd42d05a1ecfd662 [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 diff -r be43e51c523c -r c4664c2bfbf8 src/gtkimhtml.c --- 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); \ } \ } \