Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

library_glfw.js: GLFW_RELEASE not sent for keys after cmd/meta/menu key is pressed on mac #18089

Open
tonygrue opened this issue Oct 23, 2022 · 0 comments

Comments

@tonygrue
Copy link

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

    onKeyup: function(event) {
      console.log("onKeyChanged keyup: " + event.keyCode + "\n");
      GLFW.onKeyChanged(event.keyCode, 0); // GLFW_RELEASE
    },

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?

sbc100 pushed a commit that referenced this issue Jun 25, 2024
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.


![Meta_V](https://github.com/ocornut/imgui/assets/357116/0cec5893-d146-40fe-ae15-2fd00e7bd319)

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)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

No branches or pull requests

1 participant