[BUG_FIXED] (Author: Andreas Jonsson) Fix "Doc switcher icon state not refreshed on 'save all'" bug.

git-svn-id: svn://svn.tuxfamily.org/svnroot/notepadplus/repository/trunk@934 f5eea248-9336-0410-98b8-ebc06183d4e3
This commit is contained in:
Don Ho 2012-08-05 13:43:18 +00:00
parent be4682a683
commit a900e8d01d

View File

@ -4205,6 +4205,9 @@ void Notepad_plus::notifyBufferChanged(Buffer * buffer, int mask)
}
if (_pFileSwitcherPanel)
_pFileSwitcherPanel->setItemIconStatus((int)buffer);
if (!mainActive && !subActive)
{
return;
@ -4257,10 +4260,6 @@ void Notepad_plus::notifyBufferChanged(Buffer * buffer, int mask)
setDisplayFormat(buffer->getFormat());
enableConvertMenuItems(buffer->getFormat());
}
if (_pFileSwitcherPanel)
_pFileSwitcherPanel->setItemIconStatus((int)buffer);
}
void Notepad_plus::notifyBufferActivated(BufferID bufid, int view)