dimatura wrote: > > Ok, great. Fortunately the callback functions are pretty fast so the > GUI remains responsive.
It's generally good practice to make all the callbacks as short as possible. If you need to do some really *looong* processing, don't do it from a callback, find some other way to manage it (I usually spin of a worker thread) to ensure that the GUI stays alive. _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

