mirror of
https://github.com/LibreELEC/LibreELEC.tv.git
synced 2025-07-24 11:16:51 +00:00
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:
parent
7bb0cf9cc7
commit
a71ae4579c
13
packages/mediacenter/xbmc/patches/xbmc-995.03-keymap.patch
Normal file
13
packages/mediacenter/xbmc/patches/xbmc-995.03-keymap.patch
Normal 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;
|
||||
}
|
Loading…
x
Reference in New Issue
Block a user