From d514b13d62cedbd21c954388772ac07af5ff7f7c Mon Sep 17 00:00:00 2001 From: Kyrylo Pronskykh <34245032+trantus@users.noreply.github.com> Date: Fri, 19 Jan 2024 07:02:49 +0100 Subject: [PATCH] fix: make alt text selectable in Lightbox (#2563) --- src/view/com/lightbox/Lightbox.tsx | 16 ++++++++++------ 1 file changed, 10 insertions(+), 6 deletions(-) diff --git a/src/view/com/lightbox/Lightbox.tsx b/src/view/com/lightbox/Lightbox.tsx index 2271bb9f..ee096b0d 100644 --- a/src/view/com/lightbox/Lightbox.tsx +++ b/src/view/com/lightbox/Lightbox.tsx @@ -1,5 +1,5 @@ import React from 'react' -import {Pressable, StyleSheet, View} from 'react-native' +import {StyleSheet, View, Pressable} from 'react-native' import {FontAwesomeIcon} from '@fortawesome/react-native-fontawesome' import ImageView from './ImageViewing' import {shareImageModal, saveImageToMediaLibrary} from 'lib/media/manip' @@ -107,12 +107,16 @@ function LightboxFooter({imageIndex}: {imageIndex: number}) { {altText ? ( setAltExpanded(!isAltExpanded)} + onLongPress={() => {}} accessibilityRole="button"> - - {altText} - + + + {altText} + + ) : null}