Fix sensitivity while scrolling (#3190)

This commit is contained in:
Eric Bailey 2024-03-12 19:10:44 -05:00 committed by GitHub
parent 9f2f7f221c
commit 5c771050bc
No known key found for this signature in database
GPG key ID: B5690EEEBB952194
2 changed files with 9 additions and 0 deletions

View file

@ -119,6 +119,10 @@ export function Trigger({children, label}: TriggerProps) {
},
props: {
...props,
// disable on web, use `onPress`
onPointerDown: () => false,
onPress: () =>
control.isOpen ? control.close() : control.open(),
onFocus: onFocus,
onBlur: onBlur,
onMouseEnter,