From eb05c4cd6fbbc3363c9618ab650db2965409beb5 Mon Sep 17 00:00:00 2001 From: Paul Frazee Date: Wed, 28 Jun 2023 13:38:21 -0500 Subject: [APP-692] Accessibility font-scaling fixes (#922) * Fix: enable font scaling in the composer text input * Fix: cancel button in search no longer wraps * Fix: report modals no longer clip off the bottom with scaled fonts * Fix scrolling on android * Allow wrapping in dropdown items until we can handle proper sizing --- src/view/com/composer/text-input/TextInput.tsx | 1 + 1 file changed, 1 insertion(+) (limited to 'src/view/com/composer/text-input/TextInput.tsx') diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index 7b09da93d..08da42abc 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -200,6 +200,7 @@ export const TextInput = forwardRef( placeholderTextColor={pal.colors.textLight} keyboardAppearance={theme.colorScheme} autoFocus={true} + allowFontScaling multiline style={[pal.text, styles.textInput, styles.textInputFormatting]} {...props}> -- cgit 1.4.1