diff options
author | Hailey <me@haileyok.com> | 2024-03-14 18:46:06 -0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-03-14 18:46:06 -0700 |
commit | 4f8381678da505737a96b7420c0f1ea8329f3672 (patch) | |
tree | 2d216fe1d68824cccad0d627a60cca48128a17c4 /src/view/com/post/Post.tsx | |
parent | 6279c5cf3186183367d376d8ba9213688f37d252 (diff) | |
download | voidsky-4f8381678da505737a96b7420c0f1ea8329f3672.tar.zst |
Remove `FixedTouchableHighlight` , fix Android press issues (#3214)
* rm `FixedTouchableHighlight` * adjust delay for highlight * remove unnecessary background colors to support background ripple
Diffstat (limited to 'src/view/com/post/Post.tsx')
-rw-r--r-- | src/view/com/post/Post.tsx | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/post/Post.tsx b/src/view/com/post/Post.tsx index 0fe3420ba..7e53eb271 100644 --- a/src/view/com/post/Post.tsx +++ b/src/view/com/post/Post.tsx @@ -133,7 +133,7 @@ function PostInner({ }, [setLimitLines]) return ( - <Link href={itemHref} style={[styles.outer, pal.view, pal.border, style]}> + <Link href={itemHref} style={[styles.outer, pal.border, style]}> {showReplyLine && <View style={styles.replyLine} />} <View style={styles.layout}> <View style={styles.layoutAvi}> |