Fixed a small oversight

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

View File

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