diff options
author | Dave Blake <oak99sky@yahoo.co.uk> | 2020-10-20 15:18:11 +0100 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-10-20 15:18:11 +0100 |
commit | 89b58608f04aac99161d3cf87fde4fe5145ff5ea (patch) | |
tree | 77cd9a7f3a237afa35ead60e91e52ab8509cdc8d | |
parent | 94bf77ff924a3aecf23b2da9d31028bdaaa9371b (diff) | |
parent | 1945b57e7041cf7de509b38dad7898aea6c0bbb1 (diff) |
Merge pull request #18607 from DaveTBlake/fixrawkey_leia
[Backport] Fix event server unable to send raw key strikes
-rw-r--r-- | xbmc/input/InputManager.cpp | 1 |
1 files changed, 0 insertions, 1 deletions
diff --git a/xbmc/input/InputManager.cpp b/xbmc/input/InputManager.cpp index 012866c566..522fddd83c 100644 --- a/xbmc/input/InputManager.cpp +++ b/xbmc/input/InputManager.cpp @@ -234,7 +234,6 @@ bool CInputManager::ProcessEventServer(int windowId, float frameTime) if (wKeyID & ES_FLAG_UNICODE) { key = CKey(0u, 0u, static_cast<wchar_t>(wKeyID & ~ES_FLAG_UNICODE), 0, 0, 0, 0); - key.SetFromService(true); return OnKey(key); } |