fltk wrote:
> Is there a away to 'freeze' (stop the browser from updating the display)
> while it is being sorted, then 'unfreeze' so the display is updated.
> 
> I am noticing a pause while the list is being sorted.

        You probably want to 'gray it out', ie. deactivate() it.
        You can probably do this with:

                browser->deactivate();
                Fl::check();
                // do sort here
                browser->activate();

        ..or maybe Fl::wait() instead of Fl:check(), can't remember.
_______________________________________________
fltk mailing list
[email protected]
http://lists.easysw.com/mailman/listinfo/fltk

Reply via email to