Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
WaylandBackend: Fix hotkeys failing to bind on Wayland desktops
Per Wayland protocol specsheet regarding keymapping: "From version 7 onwards, the fd must be mapped with MAP_PRIVATE by the recipient, as MAP_SHARED may fail." This matches up exactly with what we're seeing with this error: [gamescope] [Error] xdg_backend: Failed to map keymap fd. Changing MAP_SHARED to MAP_PRIVATE per the spec addresses this error. Fixes: #1658 (hopefully) fixes: #1637
- Loading branch information
1c9495c
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
You're amazing for fixing this btw 😘