diff options
author | Hailey <153161762+haileyok@users.noreply.github.com> | 2024-01-25 14:12:15 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2024-01-25 14:12:15 -0800 |
commit | ab200285c5197e97c6ac9878c058161eb87a0955 (patch) | |
tree | 965daddef22bbca6e64026f48ff70ede833aa386 /src | |
parent | 10b1d16c8af8bdbcd2b7dfb546074f36654e7612 (diff) | |
download | voidsky-ab200285c5197e97c6ac9878c058161eb87a0955.tar.zst |
android alt text selection fix for expandable alt (#2629)
Diffstat (limited to 'src')
-rw-r--r-- | src/view/com/lightbox/Lightbox.tsx | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/src/view/com/lightbox/Lightbox.tsx b/src/view/com/lightbox/Lightbox.tsx index 38f2c89c9..2ee5b8d59 100644 --- a/src/view/com/lightbox/Lightbox.tsx +++ b/src/view/com/lightbox/Lightbox.tsx @@ -116,7 +116,8 @@ function LightboxFooter({imageIndex}: {imageIndex: number}) { update: {type: 'spring', springDamping: 0.7}, }) setAltExpanded(prev => !prev) - }}> + }} + onLongPress={() => {}}> {altText} </Text> </View> |