Hi'all, I just noted an interesting typo in the frame support code, which makes some framed sites look really weird. I'll fix in in the next patch, but (as it is a very simple thing to change) you might want to fix your copy asap. in html.c, in the function Html_tag_open_frameset():1971 change: gint col = *frame_number / html->stack[html->stack_top].frameset_cols; gint row = *frame_number % html->stack[html->stack_top].frameset_cols; to: gint col = *frame_number % html->stack[html->stack_top].frameset_cols; gint row = *frame_number / html->stack[html->stack_top].frameset_cols; So, in essence, switch the '/' and '%' operators. It will still make a mess of the layout as it does not obey frame sizing, but at least it is a geometrically correct mess... Cheers//Frank -- WWWWW ________________________ ## o o\ / Frank de Lange \ }# \| / +46-734352015 \ \ `--| _/ <Hacker for Hire> \ `---' \ +31-640037120 / \ frank@unternet.org / `------------------------' [ "Omnis enim res, quae dando non deficit, dum habetur et non datur, nondum habetur, quomodo habenda est." ]
participants (1)
-
Frank de Lange