Replies: 1 comment 3 replies
-
do you have logic in your global keyboard shortcuts which ignores events on inputs? I think we need more information here to know what's happening, right now I'm just making guesses. Can you provide a codesandbox or stackblitz which shows the problem outside of your application? Otherwise, we'll need you to do some digging to see what is happening. |
Beta Was this translation helpful? Give feedback.
3 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Uh oh!
There was an error while loading. Please reload this page.
-
Hello everyone,
I'm encountering a challenge when using the Picker component from the Adobe React Spectrum library within an After Effects plugin. When the Picker is open and I attempt to type text to filter options (e.g., typing "M" for items starting with "M"), instead of filtering the options within the Picker, After Effects keyboard shortcuts assigned to those letters are triggered, which disrupts the effective use of the Picker.
e.g TextField works correctly - I can type text.
Example:
<Picker label="Choose frequency"> <Item key="rarely">Rarely</Item> <Item key="sometimes">Sometimes</Item> <Item key="always">Always</Item> </Picker>
Beta Was this translation helpful? Give feedback.
All reactions