From 00261ee875945963b8897b85ea42c894ea4e77d2 Mon Sep 17 00:00:00 2001 From: mic Date: Sun, 13 Apr 2025 21:27:47 +0200 Subject: [PATCH] Add space between concatenated text nodes in getOnlyTypedText command --- js/mzta-compose-script.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/js/mzta-compose-script.js b/js/mzta-compose-script.js index 80d35c68..f858b93b 100644 --- a/js/mzta-compose-script.js +++ b/js/mzta-compose-script.js @@ -76,7 +76,7 @@ switch (message.command) { break; } } - t += node.textContent; + t += node.textContent + " "; // Track the first and last nodes for range if (!firstNode) {