flush key_input cache when Bevy loses focus (Adopted)#13678
Merged
alice-i-cecile merged 1 commit intobevyengine:mainfrom Jun 5, 2024
Merged
flush key_input cache when Bevy loses focus (Adopted)#13678alice-i-cecile merged 1 commit intobevyengine:mainfrom
alice-i-cecile merged 1 commit intobevyengine:mainfrom
Conversation
This helps avoiding stuck key presses after switching from and then back to Bevy
Contributor
Author
clip-2024-06-04_21.24.36.mp4Here's a clip of testing it. You can see it output and then stop once I alt tab and when I grab the focus again the key isn't stuck (since it was released). |
alice-i-cecile
approved these changes
Jun 5, 2024
This was referenced Jun 5, 2024
Contributor
|
Thanks for handling this 👍 :) |
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.
This was adopted from #12878. I rebased the changes resolved the following merge conflicts:
handle_winit_eventinto bevy_winit/src/state.rs'swindow_eventfunctionTested this by following the modified keyboard_input example from the original PR.
First, I verified I could reproduce the issue without the changes. Then, after applying the changes, I verified that when I Alt+Tabbed away from the running example that the log showed I released Alt and when I tabbed back it didn't behave like Alt was stuck.
The following is from the original pull request by @gavlig
Objective
This helps avoiding stuck key presses after switching from and back to Bevy window. Key press event gets stuck because window loses focus before receiving a key release event thus we end up with false positive in ButtonInput.
Solution
I saw two ways to fix this:
I chose the latter because adding another dependency felt wrong, but if that is more preferable changing this pr won't be a problem. Also if someone sees another way please let me know.
To test the bug use this small modification over examples/keyboard_input.rs: (it will work only if you have Alt-Tab combination for switching between windows in your OS, otherwise change AltLeft accordingly)
Here i made a quick video with demo of the fix: https://youtu.be/qTvUCk4IHvo In first part i press Alt and Alt+Tab to switch back and forth from example app, logs will indicate that too. In second part I applied fix and you'll see that Alt will no longer be pressed when window gets unfocused
Migration Guide
WinitEventhas a new enum variant:WinitEvent::KeyboardFocusLost.