about summary refs log tree commit diff
path: root/src
diff options
context:
space:
mode:
Diffstat (limited to 'src')
-rw-r--r--src/view/com/composer/text-input/TextInput.web.tsx2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/view/com/composer/text-input/TextInput.web.tsx b/src/view/com/composer/text-input/TextInput.web.tsx
index ef7676617..3f98a3595 100644
--- a/src/view/com/composer/text-input/TextInput.web.tsx
+++ b/src/view/com/composer/text-input/TextInput.web.tsx
@@ -87,7 +87,7 @@ export const TextInput = React.forwardRef(
             getImageFromUri(items, onPhotoPasted)
           },
           handleKeyDown: (_, event) => {
-            if (event.metaKey && event.code === 'Enter') {
+            if ((event.metaKey || event.ctrlKey) && event.code === 'Enter') {
               // Workaround relying on previous state from `setRichText` to
               // get the updated text content during editor initialization
               setRichText((state: RichText) => {