Changeset 21345 for trunk/src


Ignore:
Timestamp:
Oct 6, 2009, 4:50:22 PM (16 years ago)
Author:
vladest
Message:

Space was sent on both key up and key down. fixed

File:
1 edited

Legend:

Unmodified
Added
Removed
  • trunk/src/user32/pmwindow.cpp

    r21344 r21345  
    936936        if (WINWM_KEYDOWN == pWinMsg->message &&
    937937            (SHORT1FROMMP(mp1) & KC_CHAR) &&
    938             (pWinMsg->wParam >= 0x30 && pWinMsg->wParam <= 0x5A) ||
    939             pWinMsg->wParam == 0x20)
     938            ((pWinMsg->wParam >= 0x30 && pWinMsg->wParam <= 0x5A) ||
     939            pWinMsg->wParam == 0x20))
    940940        {
    941941            MSG extramsg;
Note: See TracChangeset for help on using the changeset viewer.