mirror of
https://github.com/reactos/reactos.git
synced 2025-02-22 16:36:33 +00:00
[0.4.11][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 == git297e33f228
during COMCTL32 WineSync 1.9.16 CORE-11866 Fix picked from 0.4.15-dev-191-g295ba62820
This commit is contained in:
parent
431a98923d
commit
efe3c7dfcf
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);
|
return TREEVIEW_HScroll(infoPtr, wParam);
|
||||||
|
|
||||||
case WM_KEYDOWN:
|
case WM_KEYDOWN:
|
||||||
|
#ifndef __REACTOS__
|
||||||
case WM_SYSKEYDOWN:
|
case WM_SYSKEYDOWN:
|
||||||
|
#endif
|
||||||
return TREEVIEW_KeyDown(infoPtr, wParam);
|
return TREEVIEW_KeyDown(infoPtr, wParam);
|
||||||
|
|
||||||
case WM_KILLFOCUS:
|
case WM_KILLFOCUS:
|
||||||
|
|
Loading…
Reference in a new issue