key down/up swap

SVN revision: 26435
This commit is contained in:
Carsten Haitzler 2006-10-09 04:26:41 +00:00
parent 050db03ce7
commit e2a72da538
1 changed files with 1 additions and 1 deletions

View File

@ -166,7 +166,7 @@ _ecore_fb_kbd_fd_handler(void *data __UNUSED__, Ecore_Fd_Handler *fd_handler __U
v = read(_ecore_fb_kbd_fd, &buf, 1);
if (v < 0) return 1;
if (v < 1) return 1;
if (buf & 0x80)
if (!(buf & 0x80))
{
/* DOWN */
int vt_switch = -1;