mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
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:
parent
d839e3d9b4
commit
295ba62820
1 changed files with 2 additions and 0 deletions
|
@ -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:
|
||||
|
|
Loading…
Reference in a new issue