wineconsole: Change selection on WM_KEYDOWN not WM_KEYUP.

oldstable
Mikołaj Zalewski 2006-10-19 19:22:24 +02:00 committed by Alexandre Julliard
parent 9d6761bd0c
commit 2750a74f18
1 changed files with 1 additions and 1 deletions

View File

@ -926,7 +926,7 @@ static void WCUSER_HandleSelectionKey(struct inner_data* data, BOOL down,
DWORD state = WCUSER_GetCtrlKeyState(keyState) & ~(CAPSLOCK_ON|NUMLOCK_ON|SCROLLLOCK_ON);
COORD c1, c2;
if (down) return;
if (!down) return;
switch (state)
{