You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I'm not familiar enough with the web platform to know if that's a browser bug or not. I imagine it's probably underspecified by the standard. Most everyone has accepted it's just the way it is and deal with it.
However, filing this bug to ask: should users of GLFW on emscripten be expected to deal with it? Presumably GLFW is supposed to abstract the underlying platform and thus should mitigate this somehow?
The text was updated successfully, but these errors were encountered:
I released a new version of contrib.glfw3 with a workaround/bug fix. I
wanted to point out that there is the same issue that was
[created](#18089) on
10/22 for the built-in implementation. That was never addressed. I also
wanted to point out that SDL2 also suffers from the same issue...
I found [this issue](ocornut/imgui#7732) while
working on a project using ImGui.

Release notes:
- Implemented workaround for
[#4](pongasoft/emscripten-glfw#4): _Using
Super + "Key" on macOS results in "Key" not being released_.
Due to the [broken
state](https://stackoverflow.com/questions/11818637/why-does-javascript-drop-keyup-events-when-the-metakey-is-pressed-on-mac-browser)
of javascript handling the `Super/Meta` key, there is no good solution.
The workaround implemented, releases all keys when `Super` is released.
Although not a perfect solution, it guarantees that the state is
_eventually_ consistent:
- if "Key" was released while "Super" was held, then when "Super" gets
released, "Key" is released (later than when actually released, final
state is consistent: "Key" in `Release` state)
- if "Key" is still held when "Super" is released, "Key" is released
when "Super" gets released, but immediately gets a down event (Up/Down
event, final state is consistent": "Key" in `Pressed` state)
Version of emscripten/emsdk:
3.1.15
I'm using glfw (via Dear ImGui) and if I press cmd+c and let go of the c and then the cmd, I never receive the GLFW_RELEASE event.
I added the following print to library_glfw.js
That informed me the onKeyUp never gets fired. Searching around on the net, I see some discussion in other forms such as (electron/electron#5188, https://stackoverflow.com/questions/11818637/why-does-javascript-drop-keyup-events-when-the-metakey-is-pressed-on-mac-browser) which indicate that the Javascript onKeyup never gets called in cases where the browser takes over (such as the cmd+c/v/etc cases on mac).
I'm not familiar enough with the web platform to know if that's a browser bug or not. I imagine it's probably underspecified by the standard. Most everyone has accepted it's just the way it is and deal with it.
However, filing this bug to ask: should users of GLFW on emscripten be expected to deal with it? Presumably GLFW is supposed to abstract the underlying platform and thus should mitigate this somehow?
The text was updated successfully, but these errors were encountered: