Bugs item #1878504, was opened at 2008-01-23 21:12
Message generated for change (Tracker Item Submitted) made by Item Submitter
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=111005&aid=1878504&group_id=11005
Please note that this message will contain a full copy of the comment thread,
including the initial issue submission, for this request,
not just the latest update.
Category: None
Group: None
Status: Open
Resolution: None
Priority: 5
Private: No
Submitted By: Joerg Fischer (jf505)
Assigned to: Nobody/Anonymous (nobody)
Summary: File Selection Box not closed down in time
Initial Comment:
Open a new nedit with blank window.
Create at least a second tab, and modify both the Untitled windows. If you
exit nedit now, nedit asks whether to save Untitled_#. Click yes, to get the
FSB. Give in a name and Save. Now nedit asks again for the next Untitled_#, but
the FSB is still up. Click OK, and there are two FSBs on the screen.
A different way to get two FSBs on the screen by calling filename_dialog() in
success, example
fileFrom = filename_dialog("First file:")
if (fileFrom == "")
return
#do something, which doesn't delay enough
fileTo = filename_dialog("Second file:")
While delaying the calls like so works
fileFrom = filename_dialog("First file:")
if (fileFrom == "")
return
# let some time pass
for (i = 0; i < 10000; i++) {
}
fileTo = filename_dialog("Second file:")
----------------------------------------------------------------------
You can respond by visiting:
https://sourceforge.net/tracker/?func=detail&atid=111005&aid=1878504&group_id=11005
--
NEdit Develop mailing list - [email protected]
http://www.nedit.org/mailman/listinfo/develop