Fix of comdlg32 Treeview undue handling of WM_SYSKEYDOWN (#2731)

Remove WM_SYSKEYDOWN handling at component level, in consistency with other components (ListView,...)
Early embodiement of the fix proposed to WineHQ : https://bugs.winehq.org/show_bug.cgi?id=49097 in order to remove functionnal limitation in ReactOS. CORE-17020
This commit is contained in:
Kyle Katarn 2020-05-09 14:37:26 +02:00 committed by GitHub
parent d839e3d9b4
commit 295ba62820
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -5825,7 +5825,9 @@ TREEVIEW_WindowProc(HWND hwnd, UINT uMsg, WPARAM wParam, LPARAM lParam)
return TREEVIEW_HScroll(infoPtr, wParam);
case WM_KEYDOWN:
#ifndef __REACTOS__
case WM_SYSKEYDOWN:
#endif
return TREEVIEW_KeyDown(infoPtr, wParam);
case WM_KILLFOCUS: