Press n or j to go to the next uncovered block, b, p or k for the previous block.
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 | import { state } from '../../store/state'; import getActiveToolForMouseEvent from '../shared/getActiveToolForMouseEvent'; import type { EventTypes } from '../../types'; import { MouseBindings } from '../../enums/ToolBindings'; /** * Event handler for mouse wheel events. * This finds the active tool */ function mouseWheel(evt: EventTypes.MouseWheelEventType) { if (state.isInteractingWithTool) { return; } evt.detail.buttons = MouseBindings.Wheel | ((evt.detail.event.buttons as number) || 0); const activeTool = getActiveToolForMouseEvent(evt); if (!activeTool) { return; } return activeTool.mouseWheelCallback(evt); } export default mouseWheel; |