Zsolt Viczian 3 anos atrás
pai
commit
01789c3375
1 arquivos alterados com 3 adições e 0 exclusões
  1. 3 0
      src/components/ToolButton.tsx

+ 3 - 0
src/components/ToolButton.tsx

@@ -165,6 +165,9 @@ export const ToolButton = React.forwardRef((props: ToolButtonProps, ref) => {
         aria-keyshortcuts={props["aria-keyshortcuts"]}
         data-testid={props["data-testid"]}
         id={`${excalId}-${props.id}`}
+        onPointerDown={(e) => {
+          props.onPointerDown?.({ pointerType: e.pointerType });
+        }}
         onChange={() => {
           props.onChange?.({ pointerType: lastPointerTypeRef.current });
         }}