fix(overlay): keep feed overlay non-focusable to allow launcher keyboard input#59
Open
johanneswilm wants to merge 1 commit into
Open
fix(overlay): keep feed overlay non-focusable to allow launcher keyboard input#59johanneswilm wants to merge 1 commit into
johanneswilm wants to merge 1 commit into
Conversation
…ard input When Neo-Feed is enabled as a launcher feed provider, the overlay window was temporarily made focusable while visible. This stole focus from the launcher, preventing the soft keyboard from appearing in the app drawer search field. Keep FLAG_NOT_FOCUSABLE set at all times and only toggle FLAG_NOT_TOUCHABLE when showing/hiding the overlay. Also start the overlay with alpha 0 so it does not cover content before the first open gesture. Fixes keyboard not showing in Neo-Launcher app drawer when Neo-Feed is enabled.
Author
|
On my Fairphone 6, this fixes #56 |
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.
When Neo-Feed is enabled as a launcher feed provider, the overlay window was temporarily made focusable while visible. This stole focus from the launcher, preventing the soft keyboard from appearing in the app drawer search field.
Keep FLAG_NOT_FOCUSABLE set at all times and only toggle FLAG_NOT_TOUCHABLE when showing/hiding the overlay. Also start the overlay with alpha 0 so it does not cover content before the first open gesture.
Fixes the long-standing issue where the keyboard does not show in the Neo-Launcher app drawer when Neo-Feed is enabled.