Kyle Hubert
Kyle Hubert
Do you mean this? Without: ``` [2020-02-10 00:01] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140689493250816)), event: ReceivedCharacter('\u{13}') } ``` With: ``` [2020-02-10 00:01] [INFO] glutin event: WindowEvent { window_id: WindowId(Id(140352641466896)),...
Very interesting, as the boolean `ignore_alt_modifier` is checked during event processing, then yes it can be moved to a live configuration parameter. If you want me to attempt that, it...
Yes, I'll pull it together, the day job is busy at the moment. I'll dedicate time tonight.
Okay, it works now.. Shall I commit the changes for winit to this pull request / branch? I know there were a couple of users testing this pull request, just...
Note, for reference, here is the commit to modify this branch to the new config style: ```patch diff --git a/src/platform/macos.rs b/src/platform/macos.rs index c600d37..2cd10a1 100644 --- a/src/platform/macos.rs +++ b/src/platform/macos.rs @@ -56,6...
Note, `ignore_alt_modifier` in the `ViewState` is set to false by default. All macOS users of winit would see no behavioral differences with this change unless they called `set_option_as_alt` on the...
As the downstream issue reported successful testing, I'll push the changes to this branch now.
Is there anything I can do to advance this?
Ok! That sounds good. I'll test that.
I tested with a Virtual Keyboard, and it appears to send proper key codes. However, I do notice with Input modified to Chinese, things like popups suggesting character combinations don't...