From 2602f0196fc84e9eeb5c5186946292a3a2d94b4c Mon Sep 17 00:00:00 2001 From: arpi_esp Date: Thu, 12 Apr 2001 00:05:41 +0000 Subject: pass keys a-z && A-Z git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@370 b3059339-0415-0410-9bf9-f77b7e298cf2 --- libvo/x11_common.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'libvo/x11_common.c') diff --git a/libvo/x11_common.c b/libvo/x11_common.c index 95c7b8bc62..765ad7e237 100644 --- a/libvo/x11_common.c +++ b/libvo/x11_common.c @@ -85,7 +85,9 @@ void vo_x11_putkey(int key){ case wsGrayMinus: mplayer_put_key('-'); break; case wsPlus: case wsGrayPlus: mplayer_put_key('+'); break; + default: if((key>='a' && key<='z')||(key>='A' && key<='Z')) mplayer_put_key(key); } + } -- cgit v1.2.3