On Jul 3, 2007, at 4:44 PM, Stan wrote: > I inadvertently created a situation like this in an application. > When I run this program, click the button, and dismiss > the fl_alert() dialog, the window refuses to exit. I wonder > if it's just my cockeyed system configuration?
Why would the application exit? There is still the main window open, so Fl::run() will not return. You could call win.hide() just after fl_alert(), but then you have to make "win" global. Or you call w->window()->hide() > _______________________________________________ fltk mailing list [email protected] http://lists.easysw.com/mailman/listinfo/fltk

