Make "new #" document drag-and-drop operation among instances right.

New correct behaviour: Dragging out a "new #" document from instance 1 and dropping it into instance 2 makes disappear "new #" document from instance 1, and nothing happens in instance 2.
This commit is contained in:
Don HO 2019-02-16 23:47:03 +01:00
parent 17c40213ca
commit c4ff9f76a3

View File

@ -163,9 +163,10 @@ BufferID Notepad_plus::doOpen(const generic_string& fileName, bool isRecursive,
generic_string gs_fileName{fileName}; generic_string gs_fileName{fileName};
size_t res = gs_fileName.find_first_of(UNTITLED_STR); size_t res = gs_fileName.find_first_of(UNTITLED_STR);
if (res != string::npos && res == 0) if (res != string::npos && res == 0) // it can happen when a document named "new #", which is dragged from another instance, is dropped into this instance
{ {
fileName2Find = fileName; // it's meaningless to show empty "new #" document, so just return null
return nullptr;
} }
else else
{ {