Hi,
I have a following problem. In the draw() function of the main window I
have, among other things, a following code:
if(pbox -> FAST_REDRAW == 1){
Fl_Group::draw_child(*pbox);
Fl_Group::draw_child(*sbox);
return ;
}
Fl_Group::draw_child(*sbox);
In the draw() method of pbox first instruction is
cerr << "I'm in draw() of pbox";
and similarly for sbox. When FAST_REDRAW is equal to 0 everything's as it
should be - apart from everything else "I'm in draw() of sbox" appears.
But when FAST_REDRAW ==1, there is only "I'm in draw() of pbox" (and
indeed nothing is done of the things that draw() of sbox should do).
It's (again) driving me nuts :-). Why could possibly draw_child() not
call draw() ?
Lukasz
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk