Fix a bug where xte_keyUp would actually press a key down.

This commit is contained in:
Bradlee Speice 2012-07-12 15:51:26 -04:00
parent bd947b2cd9
commit c92e6b2640

View File

@ -790,7 +790,7 @@ void xte_keyUp ( Display *displayLocation, char *key )
kc = XKeysymToKeycode( displayLocation, ks );
XTestFakeKeyEvent( displayLocation, kc, True, CurrentTime );
XTestFakeKeyEvent( displayLocation, kc, False, CurrentTime );
XFlush( displayLocation );
}