LinuxVNC: Fix for no input possible because of ctrl key being stuck.

Issue was reported as Debian bug ##555988,
http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=555988

Signed-off-by: Christian Beier <dontmind@freeshell.org>
Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
pull/1/head
Christian Beier 14 years ago committed by Johannes Schindelin
parent 5cbe612618
commit 6220f13003

@ -62,7 +62,8 @@ void do_key(rfbBool down,rfbKeySym keySym,rfbClientPtr cl)
}
}
} else if(keySym==XK_Control_L || keySym==XK_Control_R)
isControl--;
if(isControl>0)
isControl--;
}
/* these colours are from linux kernel drivers/char/console.c */

Loading…
Cancel
Save