diff options
author | fuzzard <fuzzard@users.noreply.github.com> | 2024-01-27 14:13:53 +1000 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-27 14:13:53 +1000 |
commit | 284b316b058675fcaeb2399addbda440d5aea9a2 (patch) | |
tree | a6a0619836c30bdf1dff53439f62633f77dfd009 | |
parent | e66514883aafb8d680a782ddce803bd69a22428a (diff) | |
parent | 5b6e060698b7a178ec4ec5e65afc8384da27eab7 (diff) |
Merge pull request #24393 from wengxt/master
Fix Input method on X11
-rw-r--r-- | xbmc/windowing/X11/WinEventsX11.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/xbmc/windowing/X11/WinEventsX11.cpp b/xbmc/windowing/X11/WinEventsX11.cpp index faffd9998a..756532c2c8 100644 --- a/xbmc/windowing/X11/WinEventsX11.cpp +++ b/xbmc/windowing/X11/WinEventsX11.cpp @@ -329,7 +329,7 @@ bool CWinEventsX11::MessagePump() continue; } - if (XFilterEvent(&xevent, m_window)) + if (XFilterEvent(&xevent, None)) continue; switch (xevent.type) |