Skip to content

Commit

Permalink
fix: Revert TooltipHideEvent to MouseOutEvent (#3909)
Browse files Browse the repository at this point in the history
Alternative approach to #3907, which selectively reverts only one line
from #3781 in order to mitigate #3893.
  • Loading branch information
kadamwhite committed Apr 26, 2024
1 parent da448d0 commit dcf4209
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion packages/vega-scenegraph/src/util/events.js
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,6 @@ export const Events = [

export const TooltipShowEvent = PointerMoveEvent;

export const TooltipHideEvent = PointerOutEvent;
export const TooltipHideEvent = MouseOutEvent;

export const HrefEvent = ClickEvent;

0 comments on commit dcf4209

Please sign in to comment.