Browse Source

Fix view not closing of not active.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository@257 f5eea248-9336-0410-98b8-ebc06183d4e3
pull/343/head^2
harrybharry 17 years ago
parent
commit
6f740de0ad
  1. 2
      PowerEditor/src/Notepad_plus.cpp

2
PowerEditor/src/Notepad_plus.cpp

@ -798,7 +798,7 @@ void Notepad_plus::doClose(BufferID id, int whichOne) {
//Do all the works
removeBufferFromView(id, whichOne);
if (nrDocs == 1 && canHideView(currentView()))
if (nrDocs == 1 && canHideView(whichOne))
{ //close the view if both visible
hideView(whichOne);
}

Loading…
Cancel
Save