diff options
author | Samuel Newman <mozzius@protonmail.com> | 2025-07-08 15:35:46 +0300 |
---|---|---|
committer | GitHub <noreply@github.com> | 2025-07-08 05:35:46 -0700 |
commit | 9adcf5a12e522b2a75458a472c826e4a284b2289 (patch) | |
tree | 00d0b6daba6ce6622dffbe9298982a8c9bdd8789 /src/view/com/composer/text-input | |
parent | 34291131b4be256e518130ae8e497e8afb5a4928 (diff) | |
download | voidsky-9adcf5a12e522b2a75458a472c826e4a284b2289.tar.zst |
specify autocap (#8619)
Diffstat (limited to 'src/view/com/composer/text-input')
-rw-r--r-- | src/view/com/composer/text-input/TextInput.tsx | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index 27b769c4e..e9c5d86b9 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -249,6 +249,9 @@ export const TextInput = forwardRef(function TextInputImpl( multiline scrollEnabled={false} numberOfLines={2} + // Note: should be the default value, but as of v1.104 + // it switched to "none" on Android + autoCapitalize="sentences" {...props} style={[ inputTextStyle, |