about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/view/com/util/Link.tsx6
1 files changed, 5 insertions, 1 deletions
diff --git a/src/view/com/util/Link.tsx b/src/view/com/util/Link.tsx
index dcb8710f6..23d1bd345 100644
--- a/src/view/com/util/Link.tsx
+++ b/src/view/com/util/Link.tsx
@@ -21,7 +21,11 @@ export const Link = observer(function Link({
     store.shell.openModal(new LinkActionsModel(href, title || href))
   }
   return (
-    <TouchableOpacity style={style} onPress={onPress} onLongPress={onLongPress}>
+    <TouchableOpacity
+      style={style}
+      onPress={onPress}
+      onLongPress={onLongPress}
+      delayPressIn={50}>
       {children ? children : <Text>{title || 'link'}</Text>}
     </TouchableOpacity>
   )