xbmc: add upstream patch, this fixes #3148, thanks to 'JoseAntonioRodriguez' and 'fernetmenta'

Signed-off-by: Stephan Raue <stephan@openelec.tv>
This commit is contained in:
Stephan Raue 2014-04-29 13:01:15 +02:00
parent 85721b2b0b
commit cc0cae480a

View File

@ -0,0 +1,13 @@
diff --git a/xbmc/windowing/WinEventsX11.cpp b/xbmc/windowing/WinEventsX11.cpp
index a5b4ba2..3586a6a 100644
--- a/xbmc/windowing/WinEventsX11.cpp
+++ b/xbmc/windowing/WinEventsX11.cpp
@@ -731,7 +731,7 @@ XBMCKey CWinEventsX11Imp::LookupXbmcKeySym(KeySym keysym)
// try ascii mappings
if (keysym>>8 == 0x00)
- return (XBMCKey)(keysym & 0xFF);
+ return (XBMCKey)tolower(keysym & 0xFF);
return (XBMCKey)keysym;
}