From b390101106c7a093bf4bfce5814c70c5eb8ffb87 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Thu, 17 Nov 2022 10:36:57 -0600 Subject: [PATCH] Open in new tab on long press --- src/view/com/util/Link.tsx | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/view/com/util/Link.tsx b/src/view/com/util/Link.tsx index 84060ac0..1d8ec230 100644 --- a/src/view/com/util/Link.tsx +++ b/src/view/com/util/Link.tsx @@ -21,7 +21,8 @@ export const Link = observer(function Link({ store.nav.navigate(href) } const onLongPress = () => { - store.shell.openModal(new LinkActionsModel(href, title || href)) + store.nav.newTab(href, title) + // store.shell.openModal(new LinkActionsModel(href, title || href)) } return (