aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDave Blake <oak99sky@yahoo.co.uk>2020-10-20 15:18:11 +0100
committerGitHub <noreply@github.com>2020-10-20 15:18:11 +0100
commit89b58608f04aac99161d3cf87fde4fe5145ff5ea (patch)
tree77cd9a7f3a237afa35ead60e91e52ab8509cdc8d
parent94bf77ff924a3aecf23b2da9d31028bdaaa9371b (diff)
parent1945b57e7041cf7de509b38dad7898aea6c0bbb1 (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.cpp1
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);
}