diff --git a/__init__.py b/__init__.py index 54fdb57..82764e2 100755 --- a/__init__.py +++ b/__init__.py @@ -754,7 +754,7 @@ def display_text(text): if event.key == pygame.K_t: try: # Join with newlines to preserve blank lines in full text - pyperclip.copy('\n'.join(originalText[1:-1])) + pyperclip.copy(''.join(originalText[2:-1])) speak("Copied entire message to the clipboard.") except: speak("Failed to copy the text to the clipboard.")