diff options
author | Alexander Gavriliuk <alexandrgproductengine@lindenlab.com> | 2023-03-24 21:10:12 +0100 |
---|---|---|
committer | Guru <alexandrgproductengine@lindenlab.com> | 2023-03-24 22:17:36 +0100 |
commit | d1b414e48b4faa8f0b6b68fc6cb16701137478fd (patch) | |
tree | 1bd74f06257230d315549c59b25e19064ba59734 /indra/newview/llscripteditor.cpp | |
parent | 275ad3fdabf8417376e01a4a994d4a78dba6f15f (diff) |
SL-17045 LSL editor cursor position desynchronization
Diffstat (limited to 'indra/newview/llscripteditor.cpp')
-rw-r--r-- | indra/newview/llscripteditor.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/indra/newview/llscripteditor.cpp b/indra/newview/llscripteditor.cpp index 140cbbedbe..3278bd3aa9 100644 --- a/indra/newview/llscripteditor.cpp +++ b/indra/newview/llscripteditor.cpp @@ -187,7 +187,7 @@ void LLScriptEditor::drawSelectionBackground() // Draw selection even if we don't have keyboard focus for search/replace if( hasSelection() && !mLineInfoList.empty()) { - std::vector<LLRect> selection_rects = getSelctionRects(); + std::vector<LLRect> selection_rects = getSelectionRects(); gGL.getTexUnit(0)->unbind(LLTexUnit::TT_TEXTURE); const LLColor4& color = mReadOnly ? mReadOnlyFgColor : mFgColor; |