diff options
author | Paul Frazee <pfrazee@gmail.com> | 2023-03-14 14:38:02 -0500 |
---|---|---|
committer | Paul Frazee <pfrazee@gmail.com> | 2023-03-14 14:38:02 -0500 |
commit | 41f4385db93ad4e5f3265bb900f93fb339909e62 (patch) | |
tree | 49ec03cc0807a8b14c3d9a2907a952caa1ab7254 | |
parent | 5bbb980250d397738231b9f3b4a3813c808ec4ac (diff) | |
download | voidsky-41f4385db93ad4e5f3265bb900f93fb339909e62.tar.zst |
Fix multiline input in composer
-rw-r--r-- | src/view/com/composer/text-input/TextInput.tsx | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/src/view/com/composer/text-input/TextInput.tsx b/src/view/com/composer/text-input/TextInput.tsx index 2a40fb518..668b148a4 100644 --- a/src/view/com/composer/text-input/TextInput.tsx +++ b/src/view/com/composer/text-input/TextInput.tsx @@ -194,6 +194,7 @@ export const TextInput = React.forwardRef( onSelectionChange={onSelectionChange} placeholder={placeholder} keyboardAppearance={theme.colorScheme} + multiline style={[pal.text, styles.textInput, styles.textInputFormatting]}> {textDecorated} </PasteInput> |