about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
authorPaul Frazee <pfrazee@gmail.com>2022-12-19 19:13:26 -0600
committerPaul Frazee <pfrazee@gmail.com>2022-12-19 19:13:26 -0600
commit7b974acc7abf3cb6330cd9359ef822b66a659f72 (patch)
treeab2ab8d0a45bce94a037b1cf6cfa0f170c35df41 /src
parentc9b209c6fd19daf2589bc69afec1c6c5cf20a9ac (diff)
downloadvoidsky-7b974acc7abf3cb6330cd9359ef822b66a659f72.tar.zst
Tighten up the post control hit regions
Diffstat (limited to 'src')
-rw-r--r--src/view/com/util/PostCtrls.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/util/PostCtrls.tsx b/src/view/com/util/PostCtrls.tsx
index b15017237..fe7390058 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)