mirror of
https://github.com/reactos/reactos.git
synced 2026-05-30 23:33:24 +08: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:
@@ -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:
|
||||
|
||||
Reference in New Issue
Block a user