fix: reroute synthetic media keys#7
Merged
xXJSONDeruloXx merged 1 commit intoMay 23, 2026
Merged
Conversation
|
Interesting that the left stick up/down chord works for you when the quick access menu is open. For me (also using a steam controller), the volume up/down assignments do not work in any context under gamescope session |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Currently, holding Steam or QAM and pressing left stick up/down adjusts system volume while QAM is visible or while in Steam BPM in a
gamescope-session, but the same chord does not work while a game surface is focused.The core issue is that the forbidden-key reroute logic in
wlserver_handle_key()only applies to real keyboard events. Synthetic media keys generated via Steam Input go throughwlserver_key(), which previously forwarded them to the focused game surface instead of rerouting them to the root server input surface.This PR applies the same forbidden-key reroute path to
wlserver_key(), so synthetic volume keys are handled the same way as physical ones.Mirrors:
Upstream PR: ValveSoftware#2187
(various videos with re-pro of problem and evidence of fix there too)
closes: ublue-os/bazzite#4856