Added Ctrl+Enter as a shortcut for hard line break

This commit is contained in:
Veronica K. B. Olsen
2019-10-28 21:43:05 +01:00
parent 57bc837056
commit 62254e1ec0
4 changed files with 14 additions and 4 deletions
+1 -1
View File
@@ -81,7 +81,7 @@ class ToText(Tokenizer):
if tType == self.T_EMPTY:
if len(thisPar) > 0:
tTemp = " ".join(thisPar)
self.theResult += "%s\n\n" % tTemp.rstrip())
self.theResult += "%s\n\n" % tTemp.rstrip()
thisPar = []
elif tType == self.T_HEAD1: