We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
2 parents 138e498 + 7b3b528 commit 9edb6f3Copy full SHA for 9edb6f3
src/components/inputs/ActionTrackerInput.tsx
@@ -487,9 +487,10 @@ export default function ActionTrackerInput(props: ConfigurableInputProps) {
487
key={action.code}
488
variant="secondary"
489
className={cn(
490
- 'h-auto min-h-16 flex-col gap-1 text-wrap py-3 touch-none select-none',
+ 'h-auto min-h-16 flex-col gap-1 text-wrap py-3 touch-none select-none [-webkit-touch-callout:none]',
491
isBeingHeld && 'ring-2 ring-primary ring-offset-2 !bg-primary/20 animate-pulse',
492
)}
493
+ onContextMenu={e => e.preventDefault()}
494
onPointerDown={e => handlePointerDown(e, action.code)}
495
onPointerMove={handlePointerMove}
496
onPointerUp={e => {
0 commit comments