Handle the left and right arrow keys.

This commit is contained in:
Michael Kaufmann 2005-10-30 19:05:42 +00:00 committed by Alexandre Julliard
parent a52a4daa9b
commit aa97e9164e
1 changed files with 2 additions and 0 deletions

View File

@ -785,6 +785,8 @@ static void SCROLL_HandleKbdEvent(HWND hwnd, WPARAM wParam, LPARAM lParam)
case VK_END: wParam = SB_BOTTOM; break;
case VK_UP: wParam = SB_LINEUP; break;
case VK_DOWN: wParam = SB_LINEDOWN; break;
case VK_LEFT: wParam = SB_LINEUP; break;
case VK_RIGHT: wParam = SB_LINEDOWN; break;
default: return;
}
SendMessageW(GetParent(hwnd),