From 7a17c7d9adadf88eafc382d792771bea5fc412f8 Mon Sep 17 00:00:00 2001 From: Joachim Henze Date: Sun, 29 Jan 2023 21:05:33 +0100 Subject: [PATCH] [NETSHELL] LanStatusDlg should show on LBUTTONUP in systray CORE-18813 not on LBUTTONDOWN. --- dll/shellext/netshell/lanstatusui.cpp | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/dll/shellext/netshell/lanstatusui.cpp b/dll/shellext/netshell/lanstatusui.cpp index c3be62dcad3..a2c8d37dcc6 100644 --- a/dll/shellext/netshell/lanstatusui.cpp +++ b/dll/shellext/netshell/lanstatusui.cpp @@ -851,7 +851,7 @@ LANStatusDlg( } break; case WM_SHOWSTATUSDLG: - if (LOWORD(lParam) == WM_LBUTTONDOWN) + if (LOWORD(lParam) == WM_LBUTTONUP) { pContext = (LANSTATUSUI_CONTEXT*)GetWindowLongPtr(hwndDlg, DWLP_USER); if (!pContext)