# HG changeset patch # User reimar # Date 1322092741 0 # Node ID 4074457d574664c36aaf217d0b59f7e091c2e286 # Parent abe845d0691f227242300d87365db868b03b48ac caca: for ordinary keys, send key events on press instead of release. This is consistent with how other vos behave. Patch by Paul B. Mahol [onemda gmail com]. diff -r abe845d0691f -r 4074457d5746 libvo/vo_caca.c --- a/libvo/vo_caca.c Wed Nov 23 23:57:37 2011 +0000 +++ b/libvo/vo_caca.c Wed Nov 23 23:59:01 2011 +0000 @@ -243,7 +243,7 @@ if (!vo_nomouse_input) mplayer_put_key(MOUSE_BTN0 + cev.data.mouse.button - 1); break; - case CACA_EVENT_KEY_RELEASE: + case CACA_EVENT_KEY_PRESS: { int key = cev.data.key.ch; const char *msg_name;