From 0d8a7cd816e9b3fcb88c4030be6652958b99b604 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Tue, 31 Jan 2023 08:31:34 -0600 Subject: [PATCH] Slightly increase the hitslop for post controls --- 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 bde44abab3..3db7370d92 100644 --- a/src/view/com/util/PostCtrls.tsx +++ b/src/view/com/util/PostCtrls.tsx @@ -39,7 +39,7 @@ interface PostCtrlsOpts { onDeletePost: () => void } -const HITSLOP = {top: 2, left: 2, bottom: 2, right: 2} +const HITSLOP = {top: 5, left: 5, bottom: 5, right: 5} export function PostCtrls(opts: PostCtrlsOpts) { const theme = useTheme()