Domingo Alvarez Duarte wrote:
> I've got the original files and inserted on then only the changes I
> made, quite a lot !
>
> I hope it can be useful !
>
> Thanks for all your attention and teaching !

There is another problem with the logic of calculating table_offset on 
void Fl_Help_View::format(), removing the fsize from the equation and 
changing the magic number 3 to 6 shows tables a bit better, not perfect 
but better.

The problem is that tables are shown with a left margin of 16 pixels and 
the right side get covered by the scrollbar when the table has width=100%.

original line : xx = blocks_[row].x + fsize + 3 + table_offset;
hacked line: xx = blocks_[row].x + 6 + table_offset;

_______________________________________________
fltk-dev mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk-dev

Reply via email to