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

Fix #1112: simultaneous key presses being dropped #1472

Closed
wants to merge 2 commits into from

Commits on Apr 21, 2019

  1. Fix glfw#1112: simultaneous key presses being dropped

    This improves the mechanism to check for duplicate key press events, by
    checking if the event with the same time code actually corresponds to
    the same key.
    
    This will correctly process any key known to GLFW, handling simultanous
    presses of different keys, while still filtering out duplicate presses
    of the same key.
    
    Note that this still does not properly handle keys that are
    GLFW_KEY_UNKNOWN, as I am not aware of a good way to check for previous
    events on those keys.
    LucaRood committed Apr 21, 2019
    Configuration menu
    Copy the full SHA
    4ea7ed0 View commit details
    Browse the repository at this point in the history

Commits on Feb 22, 2020

  1. Configuration menu
    Copy the full SHA
    ba9737e View commit details
    Browse the repository at this point in the history