changeset 369:b1a706452eeb

pass keys a-z && A-Z
author arpi_esp
date Thu, 12 Apr 2001 00:05:41 +0000
parents 22d2004b721e
children baf3fe20eb23
files libvo/x11_common.c
diffstat 1 files changed, 2 insertions(+), 0 deletions(-) [+]
line wrap: on
line diff
--- a/libvo/x11_common.c	Thu Apr 12 00:05:18 2001 +0000
+++ b/libvo/x11_common.c	Thu Apr 12 00:05:41 2001 +0000
@@ -85,7 +85,9 @@
    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);
   }
+
 }