[0.4.9][COMCTL32] Treeview undo handling of WM_SYSKEYDOWN (#2731) CORE-12203 CORE-17020

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 functional limitation in ReactOS.

Fixes regressions CORE-17020 and CORE-12203 that were once introduced
by SVN r72320 == git 297e33f228
during COMCTL32 WineSync 1.9.16 CORE-11866

Fix picked from 0.4.15-dev-191-g 295ba62820
This commit is contained in:
Joachim Henze 2021-01-18 02:25:55 +01:00
parent 7bbe9f94ba
commit 2c86491e9f

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: