Hi,

while working on some macros I noticed that something like this 

   fileFrom = filename_dialog("First file:")
   if (fileFrom == "")
      return

   # let some time pass
   for (i = 0; i < 10000; i++) {

   }
   fileTo = filename_dialog("Second file:")

looks fine on my system. That is, you select a file in the first file
selection box (FSB) and click Ok, then the FSB goes away and the
second FSB appears. 

BUT this

   fileFrom = filename_dialog("First file:")
   if (fileFrom == "")
      return
   #do something, which doesn't delay enough
   fileTo = filename_dialog("Second file:")

results in two FSBs on the screen.  Note, to see the first box, you
may have to drag the second one out of the way (in case the boxes 
pop up on exactly the same place).

Does it qualify for a bug report for the next release?

Cheers,
Jörg
--
NEdit Develop mailing list - [email protected]
http://www.nedit.org/mailman/listinfo/develop

Reply via email to