Mercurial > pidgin.yaz
changeset 182:b3b188f057f2
[gaim-migrate @ 192]
fflewddur submitted a patch to fix the twice-font-resize hang.
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Wed, 26 Apr 2000 16:31:19 +0000 |
parents | f2d631f867a3 |
children | 8886a34cd9f1 |
files | src/conversation.c |
diffstat | 1 files changed, 1 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/src/conversation.c Wed Apr 26 16:15:09 2000 +0000 +++ b/src/conversation.c Wed Apr 26 16:31:19 2000 +0000 @@ -504,6 +504,7 @@ while((t = strstr(t, tag))) { if (((t-s) < finish) && ((t-s) >= start)) { gtk_editable_delete_text(GTK_EDITABLE(entry), (t-s), (t-s) + strlen(tag)); + t = gtk_editable_get_chars(GTK_EDITABLE(entry), 0, -1); } else t++; }