Changed spaces settings - both swiched with neither and left with right.

This commit is contained in:
Luka 2020-10-26 15:25:46 +01:00
parent c63a9d47da
commit dd5fa4a1b8

View File

@ -139,13 +139,13 @@ class SpaceRegex:
def __call__(self, word): def __call__(self, word):
match = False match = False
if 'both' in self.space:
match = match or (word.previous_glue != '' and word.glue != '')
if 'right' in self.space:
match = match or (word.previous_glue == '' and word.glue != '')
if 'left' in self.space:
match = match or (word.previous_glue != '' and word.glue == '')
if 'neither' in self.space: if 'neither' in self.space:
match = match or (word.previous_glue != '' and word.glue != '')
if 'left' in self.space:
match = match or (word.previous_glue == '' and word.glue != '')
if 'right' in self.space:
match = match or (word.previous_glue != '' and word.glue == '')
if 'both' in self.space:
match = match or (word.previous_glue == '' and word.glue == '') match = match or (word.previous_glue == '' and word.glue == '')
return match return match