|
From: <car...@lo...> - 2002-12-30 15:49:13
|
When a remote file is closed and is the only file open, the "File Deleted on Disk" dialog pops up for the "Untitled.." buffer created. Changing the following line in Buffer.checkFileStatus(): if(!getFlag(IO) && !getFlag(LOADING) && file != null) to if(!getFlag(IO) && !getFlag(LOADING) && file != null && !isUntitled()) gets rid of it. I didn't diff this as it's kind of trivial. Carmine |