diff options
author | richard <none@none> | 2009-11-25 19:14:55 -0800 |
---|---|---|
committer | richard <none@none> | 2009-11-25 19:14:55 -0800 |
commit | edcd835febac3758d1522b4ec51bba60eeafcd63 (patch) | |
tree | 85c9875e5bdcd7ec0c50f76ae800f521b5585121 /indra/llui/lltexteditor.cpp | |
parent | 617ca79ed073604883f3e0e21b2e81a3786bbe6f (diff) |
fixed line numbering in script editors
Diffstat (limited to 'indra/llui/lltexteditor.cpp')
-rw-r--r-- | indra/llui/lltexteditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/llui/lltexteditor.cpp b/indra/llui/lltexteditor.cpp index 3f4ef24f82..0e8db09980 100644 --- a/indra/llui/lltexteditor.cpp +++ b/indra/llui/lltexteditor.cpp @@ -2158,7 +2158,7 @@ void LLTextEditor::drawLineNumbers() return; } - S32 cursor_line = getLineNumFromDocIndex(mCursorPos); + S32 cursor_line = mLineInfoList[getLineNumFromDocIndex(mCursorPos)].mLineNum; if (mShowLineNumbers) { |