Mercurial > pidgin
changeset 540:f586c3819574
[gaim-migrate @ 550]
smileys don't get overwritten
committer: Tailor Script <tailor@pidgin.im>
author | Eric Warmenhoven <eric@warmenhoven.org> |
---|---|
date | Thu, 27 Jul 2000 19:33:18 +0000 |
parents | 73d054b7096e |
children | ee458e99d60f |
files | src/gtkhtml.c |
diffstat | 1 files changed, 6 insertions(+), 6 deletions(-) [+] |
line wrap: on
line diff
--- a/src/gtkhtml.c Thu Jul 27 19:07:14 2000 +0000 +++ b/src/gtkhtml.c Thu Jul 27 19:33:18 2000 +0000 @@ -2698,12 +2698,12 @@ /* make sure pixmaps drop down a line after a <BR> */ if (last_hb->newline) - html->current_y += private->height + 2; + html->current_y += private->height + 5; /* wrap pixmaps */ gdk_window_get_size(html->html_area, &width, &height); if ((html->current_x + private->width) >= width) { - html->current_y += private->height + 2; + html->current_y += private->height + 5; html->current_x = 0; } @@ -2729,8 +2729,8 @@ if (html->current_x == BORDER_WIDTH) { - html->current_y += hb->height; - hb->y += hb->height; + html->current_y += hb->height + 3; + hb->y += hb->height + 3; } @@ -2824,7 +2824,7 @@ if (html->current_x > 0) html->current_x = 0; else - html->current_y += cfont->ascent + cfont->descent + 2; + html->current_y += cfont->ascent + cfont->descent + 5; return; } @@ -2933,7 +2933,7 @@ if (html->current_x == 0) { - html->current_y += height; + html->current_y += height + 3; gdk_text_extents(cfont, text, 1, &lb, NULL, NULL, NULL, NULL); html->current_x += (2 - lb); }