excessively unhelpful commit message

This commit is contained in:
Benjamin Lu
2025-09-17 19:05:35 -07:00
parent 9d559545e9
commit 196c0c4f50

View File

@@ -145,7 +145,7 @@ export function useSlotLinkInteraction({
const handlePointerCancel = (event: PointerEvent) => {
if (event.pointerId !== activePointerId) return
cleanupListeners()
app.canvas?.setDirty(true, true)
app.canvas?.setDirty(true)
}
const onPointerDown = (event: PointerEvent) => {
@@ -189,7 +189,7 @@ export function useSlotLinkInteraction({
window.addEventListener('pointermove', handlePointerMove, true)
window.addEventListener('pointerup', handlePointerUp, true)
window.addEventListener('pointercancel', handlePointerCancel, true)
app.canvas?.setDirty(true, true)
app.canvas?.setDirty(true)
event.preventDefault()
event.stopPropagation()
}