Skip to content
Draft
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion packages/@react-aria/interactions/src/useHover.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ function setGlobalIgnoreEmulatedMouseEvents() {
// the distant future because a user previously touched the element.
setTimeout(() => {
globalIgnoreEmulatedMouseEvents = false;
}, 50);
}, 500);
Copy link
Member Author

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Note: I hate this fix, this is much too long, but 200 wasn't working, which felt like the edge of the reasonable range...

I'm not going to fix the tests for this one until we discuss it. In the meantime, just pull the branch locally

}

function handleGlobalPointerEvent(e: PointerEvent) {
Expand Down