From 84ff3a5684ab2bd687889329fc0d88907c19848e Mon Sep 17 00:00:00 2001 From: Claude Date: Sat, 28 Feb 2026 22:36:07 +0000 Subject: [PATCH] Keep Keyboard.dismiss() for alt text dialog The alt text dialog needs keyboard dismissal since it has its own text input that conflicts with the composer's keyboard. https://claude.ai/code/session_011cNDhEb2cDgg5QbVuzEyH1 --- src/view/com/composer/photos/Gallery.tsx | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/view/com/composer/photos/Gallery.tsx b/src/view/com/composer/photos/Gallery.tsx index 1f3fb01325..45ce414064 100644 --- a/src/view/com/composer/photos/Gallery.tsx +++ b/src/view/com/composer/photos/Gallery.tsx @@ -2,6 +2,7 @@ import React, {useState} from 'react' import { findNodeHandle, type ImageStyle, + Keyboard, type LayoutChangeEvent, StyleSheet, TouchableOpacity, @@ -164,6 +165,7 @@ const GalleryItem = ({ } const onAltTextEdit = () => { + Keyboard.dismiss() altTextControl.open() }