remove boarder checks

This commit is contained in:
Chrys 2019-04-27 16:08:19 +02:00
parent fe7152c0d9
commit ff1d474ca2

View File

@ -89,9 +89,9 @@ class barrierManager():
offset = xCursor - 1
start = line[:offset].rfind(b)
if start != -1:
if not self.hasBorder(text, xCursor, yCursor, leftBarriers, start):
start = -1
else:
#if not self.hasBorder(text, xCursor, yCursor, leftBarriers, start):
# start = -1
#else:
start += 1
break
if start == -1:
@ -101,8 +101,8 @@ class barrierManager():
end = line[start:].find(b)
if end != -1:
end = start + end
if not self.hasBorder(text, xCursor, yCursor,rightBarriers, end):
end = -1
#if not self.hasBorder(text, xCursor, yCursor,rightBarriers, end):
# end = -1
break
if end == -1:
return False, line