From: Shannon W. <we...@ro...> - 2005-05-13 22:30:07
|
Bob Doan wrote: > Attached is an untested patch which should fix the problem > > let me know > > - bob Hey Bob, Patch works great, thanks. I researched the HTML problem I was having and it turns out to be a bug related to trim_links. Circa line 279 in layout.c, if it does the trim links a call to rlib_layout_output_extras_start is made which (in html) starts a <span> tag if there is a background color. However, there is never a call to _end after that so that span tag is never closed. I tried to hack this by adding a call to end_draw_cell_background() and it fixes it somewhat but I'm pretty sure this isn't correct, or at least all that needs to be done. Please advise :) Shannon |