From bc54c8d7c6a5c1d915c3234b148ca7eb23b31483 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Mon, 19 Dec 2022 19:13:26 -0600 Subject: [PATCH] Tighten up the post control hit regions --- src/view/com/util/PostCtrls.tsx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/view/com/util/PostCtrls.tsx b/src/view/com/util/PostCtrls.tsx index b150172379..fe73900589 100644 --- a/src/view/com/util/PostCtrls.tsx +++ b/src/view/com/util/PostCtrls.tsx @@ -27,7 +27,7 @@ interface PostCtrlsOpts { const redgray = '#7A6161' const sRedgray = {color: redgray} -const HITSLOP = {top: 10, left: 10, bottom: 10, right: 10} +const HITSLOP = {top: 5, left: 5, bottom: 5, right: 5} export function PostCtrls(opts: PostCtrlsOpts) { const interp1 = useAnimatedValue(0)