diff options
author | Paul Frazee <pfrazee@gmail.com> | 2024-06-19 18:39:45 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-06-19 18:39:45 -0700 |
commit | 80197556f176723b619349dc060d1b7001472d47 (patch) | |
tree | 50127b08d99adc95724967d0531194e10b1fbe04 /src/view/com/util/post-ctrls/RepostButton.tsx | |
parent | 75aec19230609f8ae689cd1ec0b2697c5233bdeb (diff) | |
download | voidsky-80197556f176723b619349dc060d1b7001472d47.tar.zst |
Rework "Who can reply" to blend more nicely into the UI (#4578)
* Rework WhoCanReply controls in threads to blend more nicely * Fix layout * Fix post control hitslops * Move dialog content to separate component --------- Co-authored-by: Dan Abramov <dan.abramov@gmail.com>
Diffstat (limited to 'src/view/com/util/post-ctrls/RepostButton.tsx')
-rw-r--r-- | src/view/com/util/post-ctrls/RepostButton.tsx | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/view/com/util/post-ctrls/RepostButton.tsx b/src/view/com/util/post-ctrls/RepostButton.tsx index 10bc369b8..d49cda442 100644 --- a/src/view/com/util/post-ctrls/RepostButton.tsx +++ b/src/view/com/util/post-ctrls/RepostButton.tsx @@ -3,7 +3,7 @@ import {View} from 'react-native' import {msg, plural} from '@lingui/macro' import {useLingui} from '@lingui/react' -import {HITSLOP_10, HITSLOP_20} from '#/lib/constants' +import {POST_CTRL_HITSLOP} from '#/lib/constants' import {useHaptics} from '#/lib/haptics' import {useRequireAuth} from '#/state/session' import {atoms as a, useTheme} from '#/alf' @@ -67,7 +67,7 @@ let RepostButton = ({ shape="round" variant="ghost" color="secondary" - hitSlop={big ? HITSLOP_20 : HITSLOP_10}> + hitSlop={POST_CTRL_HITSLOP}> <Repost style={color} width={big ? 22 : 18} /> {typeof repostCount !== 'undefined' && repostCount > 0 ? ( <Text |