Update word_utils.py
This commit is contained in:
parent
a78cb62620
commit
0e4435802e
@ -12,7 +12,7 @@ def getPrevWord(currX,currY, currText):
|
||||
endOfScreen = False
|
||||
if currText == '':
|
||||
return -1, -1, '', endOfScreen, lineBreak
|
||||
if currText.strip(string.punctuation +"§ " + string.whitespace) == '':
|
||||
if currText.strip(string.whitespace) == '':
|
||||
return currX, currY, '', endOfScreen, lineBreak
|
||||
x, y, currWord, endOfScreen, lineBreakCurrWord = getCurrentWord(currX,currY,currText)
|
||||
if endOfScreen:
|
||||
@ -41,7 +41,7 @@ def getCurrentWord(currX,currY, currText):
|
||||
endOfScreen = False
|
||||
if currText == '':
|
||||
return -1, -1, '', endOfScreen, lineBreak
|
||||
if currText.strip(string.punctuation +"§ " + string.whitespace) == '':
|
||||
if currText.strip(string.whitespace) == '':
|
||||
return currX, currY, '', endOfScreen, lineBreak
|
||||
x = currX
|
||||
y = currY
|
||||
@ -84,7 +84,7 @@ def getNextWord(currX,currY, currText):
|
||||
endOfScreen = False
|
||||
if currText == '':
|
||||
return -1, -1, '', endOfScreen, lineBreak
|
||||
if currText.strip(string.punctuation +"§ " + string.whitespace) == '':
|
||||
if currText.strip(string.whitespace) == '':
|
||||
return currX, currY, '', endOfScreen, lineBreak
|
||||
x = currX
|
||||
y = currY
|
||||
|
Loading…
Reference in New Issue
Block a user