Remove white space from right of lines copied to clipboard.

This commit is contained in:
Storm Dragon 2020-03-06 13:13:26 -05:00
parent 3d93dcbd98
commit 48427c247c

View File

@ -18,7 +18,7 @@ class command():
return _('copies last presented text to the clipboard')
def run(self):
lastEcho = self.env['runtime']['outputManager'].getLastEcho()
lastEcho = self.env['runtime']['outputManager'].getLastEcho().rstrip()
self.env['runtime']['memoryManager'].addValueToFirstIndex('clipboardHistory', lastEcho)
self.env['runtime']['outputManager'].presentText(lastEcho, soundIcon='CopyToClipboard', interrupt=True)