diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-04-13 15:06:11 +0300 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-04-13 15:06:11 +0300 |
commit | 80447f5e6bfd9843413c7a79074d11373e6c4061 (patch) | |
tree | 54e38d74e0fb417c476d80a4a20c713a4376c6a1 /indra/llui/llview.cpp | |
parent | 826d6fc591dace753b053d9b3c28a0e710037964 (diff) |
SL-11172 Re-fixed, now should affect 'tab' only
Diffstat (limited to 'indra/llui/llview.cpp')
-rw-r--r-- | indra/llui/llview.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llview.cpp b/indra/llui/llview.cpp index 9d5cc70580..d81e2cd494 100644 --- a/indra/llui/llview.cpp +++ b/indra/llui/llview.cpp @@ -641,12 +641,12 @@ void LLView::onVisibilityChange ( BOOL new_visibility ) } // virtual -void LLView::onChildGotFocus(const LLUICtrl * cntrl) +void LLView::onUpdateScrollToChild(const LLUICtrl * cntrl) { LLView* parent_view = getParent(); if (parent_view) { - parent_view->onChildGotFocus(cntrl); + parent_view->onUpdateScrollToChild(cntrl); } } |