Noticed in fluid.

 TabGroup seems to have a bug.  It eats processor time drawing the
widget outline until you insert the first group.
 The first group should probably be inserted automatically with a
 label (not a name) like 'Tab_1'.  If you have other plans it's
 easy to delete and it would be helpful for beginners, especially
 those of us that never rtfm.  ;-)  ...until we have no other choice.

 I'm on another trail right now so I haven't followed up on that
 with a modification.

--------------

Noticed in test files (which works now whether it did before
or no, which I am not keeping track of -- see my recent test
files upload if the version in the development tree won't play.).

In the file size_range.cxx

The window is set to unrealistic limits with the constraint so small
that the button doesn't initially show.  (The WM won't let it resize
to 0, 0.)

 UI::UI() {
   fltk::DoubleBufferWindow* w;
*    // changed startup size to put button near middle of window -rs
** {fltk::DoubleBufferWindow* o = window = new fltk::DoubleBufferWindow(120, 80);
*      w = o;
     o->type(241);
     o->user_data((void*)(this));
     o->begin();
     fltk::Button *b = new fltk::LightButton(25, 25, 68, 20, "button");
     o->end();
*      // changed range (x can shrink by 20 or expand by 80,
     // y can shrink by 20 or expand by 40 setting (xmin, ymin, xmax, ymax)
     // as follows. -rs
     o->size_range(100,60,200,120);
*    }
 }


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

Reply via email to