Merge branch 'main' into convert_folder

This commit is contained in:
Veronica Berglyd Olsen
2022-10-01 19:06:52 +02:00
committed by GitHub
5 changed files with 72 additions and 7 deletions
+2 -2
View File
@@ -1994,12 +1994,12 @@ class GuiDocEditor(QTextEdit):
tCheck = tInsert
if tCheck in self.mainConf.fmtPadBefore:
if self.allowSpaceBeforeColon(theText, tCheck):
if self._allowSpaceBeforeColon(theText, tCheck):
nDelete = max(nDelete, 1)
tInsert = self._typPadChar + tInsert
if tCheck in self.mainConf.fmtPadAfter:
if self.allowSpaceBeforeColon(theText, tCheck):
if self._allowSpaceBeforeColon(theText, tCheck):
nDelete = max(nDelete, 1)
tInsert = tInsert + self._typPadChar