Improved efficiency a bit

This commit is contained in:
James Johnson 2018-01-11 12:40:32 -05:00
parent bc40bbf561
commit bd721d590e
1 changed files with 3 additions and 2 deletions

View File

@ -533,11 +533,12 @@ class EditWidgetBase : ScrollWidgetBase, EditableContentListener, MenuItemAction
{
int curWrapLine = 0;
int curPosition = textPos.pos;
LineSpan curSpan = getSpan(textPos.line);
while (true)
{
if (curWrapLine == getSpan(textPos.line).wrapPoints.length - 1)
if (curWrapLine == curSpan.wrapPoints.length - 1)
return curWrapLine;
curPosition -= getSpan(textPos.line).wrapPoints[curWrapLine].wrapPos;
curPosition -= curSpan.wrapPoints[curWrapLine].wrapPos;
if (curPosition < 0)
{
return curWrapLine;