On Fri, Mar 07, 2003 at 04:22:27PM +0000, John Bradford wrote:
1. Disapearing list bullets. -- Solved, I'll make code available if you are interested.
Yes please.
This might be just a temporary fix. I was going to hold out until I understood problem #2 better.
This patch seems to cure the maximizing problem as well :-).
John.
Ah, so just one more bug to squash... *SQUISH* diff -pru source/src/dw_page.c target/src/dw_page.c --- source/src/dw_page.c 2003-03-08 02:25:51.000000000 -0500 +++ target/src/dw_page.c 2003-03-08 02:26:58.000000000 -0500 @@ -1080,7 +1080,7 @@ static void Dw_page_real_word_wrap (DwPa if( page->words[word_ind].place ) { DwPagePlace *p = page->words[word_ind].place; - p->x_left = last_space + page->imp->last_line_width; + p->x_left = (new_line ? 0 : last_space) + page->imp->last_line_width; /* x_left will be changed for floats */ p->line_num = page->imp->num_lines-1; p->word_num = word_ind;