[BUG_FIXED] (Author: Pavel Nedev) Fix docSwitcher bug which shows new 0 after loading a session of files.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@1279 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2014-10-15 22:24:14 +00:00
parent b50d2a9a29
commit d815ae4981
1 changed files with 4 additions and 0 deletions

View File

@ -1424,6 +1424,10 @@ bool Notepad_plus::loadSession(Session & session, bool isSnapshotMode)
hideView(otherView());
else if (canHideView(currentView()))
hideView(currentView());
if (_pFileSwitcherPanel)
_pFileSwitcherPanel->reload();
return allSessionFilesLoaded;
}