From c54c5ebb5f320b6cfe8d355eec9f27f7dee111c8 Mon Sep 17 00:00:00 2001 From: Giannis Adamopoulos Date: Mon, 29 Jan 2018 00:27:45 +0200 Subject: [PATCH] [EXPLORER] CTrayWindow: Draw the sizer only when the taskbar is not locked. --- base/shell/explorer/traywnd.cpp | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/base/shell/explorer/traywnd.cpp b/base/shell/explorer/traywnd.cpp index e0b5aba452a..9ca7b25781c 100644 --- a/base/shell/explorer/traywnd.cpp +++ b/base/shell/explorer/traywnd.cpp @@ -2168,6 +2168,10 @@ ChangePos: bHandled = FALSE; return 0; } + else if (g_TaskbarSettings.bLock) + { + return 0; + } return DrawSizerWithTheme((HRGN) wParam); }