summaryrefslogtreecommitdiff
path: root/indra/newview
diff options
context:
space:
mode:
authorMnikolenko Productengine <mnikolenko@productengine.com>2020-10-06 19:45:26 +0300
committerMnikolenko Productengine <mnikolenko@productengine.com>2020-10-07 11:14:14 +0300
commit31c7b08c864b18b576754c7f1c315e0b6f47b8d9 (patch)
tree7e3aa08e11b40d88599a5309f21a3a9d12b43b71 /indra/newview
parent5172f5d6d6ee76ffe9f7fe0a8a6eb8a86ec93d4d (diff)
SL-14030 FIXED Clicking in Places > My Landmarks scrolls the Places window.
Diffstat (limited to 'indra/newview')
-rw-r--r--indra/newview/llpanellandmarks.cpp6
1 files changed, 6 insertions, 0 deletions
diff --git a/indra/newview/llpanellandmarks.cpp b/indra/newview/llpanellandmarks.cpp
index cd1dc0f070..ccd8497484 100644
--- a/indra/newview/llpanellandmarks.cpp
+++ b/indra/newview/llpanellandmarks.cpp
@@ -227,6 +227,12 @@ BOOL LLLandmarksPanel::postBuild()
initMyInventoryPanel();
initLibraryInventoryPanel();
+ LLAccordionCtrl* accordion = getChild<LLAccordionCtrl>("landmarks_accordion");
+ if (accordion)
+ {
+ accordion->setSkipScrollToChild(true);
+ }
+
return TRUE;
}