Fix a GUI bug of "Folder as Workspace"

Bug : while click on close button of Folder as Workspace Panel, it still
appears activated on toolbar and in the menu.
This commit is contained in:
Don Ho 2016-02-12 22:21:20 +01:00
parent d7a0649c1f
commit 951c51a32a

View File

@ -34,6 +34,7 @@
#include "Parameters.h"
#include "RunDlg.h"
#include "ReadDirectoryChanges.h"
#include "menuCmdID.h"
#define CX_BITMAP 16
#define CY_BITMAP 16
@ -447,8 +448,12 @@ void FileBrowser::openSelectFile()
void FileBrowser::notified(LPNMHDR notification)
{
if ((notification->hwndFrom == _treeView.getHSelf()))
{
if (notification->code == DMN_CLOSE)
{
::SendMessage(_hParent, WM_COMMAND, IDM_VIEW_FILEBROWSER, 0);
}
else if ((notification->hwndFrom == _treeView.getHSelf()))
{
TCHAR textBuffer[MAX_PATH];
TVITEM tvItem;