Commit aa97e916 authored by Michael Kaufmann's avatar Michael Kaufmann Committed by Alexandre Julliard

Handle the left and right arrow keys.

parent a52a4daa
......@@ -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),
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment