Stan wrote: > After you're done moving the children around as you described, the > group tab order will be 3-1-2-(stop). The tab key won't advance > the focus from 2->3.
I just can't understand why so much complexity and if the reorder of the child widgets is, for now, a good thing to do. Here's the order in wich the child widgets appear in my app. childWdgA = 0 childWdgB = 1 childWdgC = 2 childWdgD = 3 To make my app works properly the child widgets MUST be ordered like this: childWdgD = 0 childWdgA = 1 childWdgB = 2 childWdgC = 3 the logical thing to do would be: Fl_Widget *temp = child(3); insert(*child(2), 3); insert(*child(1), 2); insert(*child(0), 1); insert(*temp, 0); but in the end I get this: childWdgC = 0 childWdgD = 1 childWdgA = 2 childWdgB = 3 It may be possible to be consistent with that twisted logic but I still don't find out how. Does anybody know it ? _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

