From 44c6fbb63a2f8df5b100f2bbdc63a9f0836cfe2f Mon Sep 17 00:00:00 2001 From: Amine Khaldi Date: Mon, 22 Jun 2015 16:01:43 +0000 Subject: [PATCH] [EXPLORER] Explicitly request applications to re-register their systray icons as soon as explorer is started. By Joachim Henze. CORE-9824 svn path=/trunk/; revision=68238 --- reactos/base/shell/explorer/trayntfy.cpp | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/reactos/base/shell/explorer/trayntfy.cpp b/reactos/base/shell/explorer/trayntfy.cpp index 94613a729fe..54b70f4a918 100644 --- a/reactos/base/shell/explorer/trayntfy.cpp +++ b/reactos/base/shell/explorer/trayntfy.cpp @@ -434,6 +434,13 @@ public: LRESULT OnCreate(UINT uMsg, WPARAM wParam, LPARAM lParam, BOOL& bHandled) { Toolbar.Initialize(m_hWnd); + + // Explicitly request running applications to re-register their systray icons + SendNotifyMessage(HWND_BROADCAST, + RegisterWindowMessage(TEXT("TaskbarCreated")), + 0, + 0); + return TRUE; } -- 2.17.1