(e: MouseEvent)
| 198 | } |
| 199 | |
| 200 | export function onMouseDown(e: MouseEvent) { |
| 201 | // Block middle mouse button auto-scroll mode (the circular gizmo that appears and allows quick scrolling by moving the cursor above or below it) |
| 202 | if (e.button === BUTTON_MIDDLE) e.preventDefault(); |
| 203 | } |
| 204 | |
| 205 | export function onContextMenu(e: MouseEvent) { |
| 206 | if (!targetIsTextField(e.target || undefined) && e.target !== textToolInteractiveInputElement) { |