Hi, On Mon, Mar 17, 2008 at 06:56:26PM +0000, place wrote:
I moved to snapshot 6066 (I'd been on 5990) the other day, and now I notice that dillo is unresponsive after I save a file.
Seen in the 6059 announcement (http://fltk.org/articles.php?L791): "+ Changed the modal event loop of file_chooser() and dir_chooser() to use a new exec() method that delegates to Window::exec() internally. This exec() method should handle unpleasant side effects with other modal windows when closing the file_chooser dialog window.
+ Updated FileChooser.fl to reflect modifications made in the cxx/h files. Please do not edit these files directly (except the include header) Thanks."
If anybody's tried a recent snapshot: Does it work for you?
The same happened to me! Now I'm using fltk-2.0.x-r5990 plus this patch: ------------------------------------------------------------------------------ diff -pru fltk-2.0.x-r5990/src/message.cxx fltk-2.0.x-r6059/src/message.cxx --- fltk-2.0.x-r5990/src/message.cxx 2007-11-28 16:42:30.000000000 -0300 +++ fltk-2.0.x-r6059/src/message.cxx 2008-02-22 20:00:05.000000000 -0300 @@ -1,5 +1,5 @@ // -// "$Id: message.cxx 5990 2007-11-28 19:42:30Z dejan $" +// "$Id: message.cxx 6041 2008-02-22 23:00:05Z fabien $" // // Copyright 1998-2006 by Bill Spitzak and others. // @@ -429,7 +429,7 @@ static const char* input_innards(const c const char* defstr, uchar type) { int r = innards("?", defstr ? defstr : "", type, fmt, ap, fltk::cancel, fltk::ok, 0); - return r>=0 ? textfield->text() : 0; + return r>0 ? textfield->text() : 0; } /*! ------------------------------------------------------------------------------ -- Cheers Jorge.-