diff options
author | 2023-02-03 02:59:18 +1100 | |
---|---|---|
committer | 2023-02-03 02:59:18 +1100 | |
commit | 26833301afc3140cc86b074acec967a1955db82a (patch) | |
tree | 8ab2801f1d070212815d45407d0af124fb117734 | |
parent | be9cb8161a6b4cb0df551bc4c1c557ef7978d631 (diff) |
osd: Don't swallow text input with -keyboardprovider win32 (addresses GitHub #7911).
-rw-r--r-- | src/osd/modules/input/input_win32.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/osd/modules/input/input_win32.cpp b/src/osd/modules/input/input_win32.cpp index a98d928ba5a..57ea073f863 100644 --- a/src/osd/modules/input/input_win32.cpp +++ b/src/osd/modules/input/input_win32.cpp @@ -114,7 +114,7 @@ public: { device.queue_events(args, 1); }); - return true; + return false; // we still want text input events to be generated default: return false; |