Fixed a small oversight

This commit is contained in:
HomeWorld 2013-09-12 08:44:34 +03:00
parent 82a711acdf
commit 4ada117ef7

View File

@ -2981,10 +2981,13 @@ LRESULT CALLBACK OBS::OBSProc(HWND hwnd, UINT message, WPARAM wParam, LPARAM lPa
default: default:
if (App && message == App->wmExplorerRestarted) if (App && message == App->wmExplorerRestarted)
{
if(App->bNotificationAreaIcon)
{ {
App->bNotificationAreaIcon = false; App->bNotificationAreaIcon = false;
App->ShowNotificationAreaIcon(); App->ShowNotificationAreaIcon();
} }
}
return DefWindowProc(hwnd, message, wParam, lParam); return DefWindowProc(hwnd, message, wParam, lParam);
} }