diff options
author | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-07-10 19:48:41 +0300 |
---|---|---|
committer | andreykproductengine <andreykproductengine@lindenlab.com> | 2017-07-10 19:48:41 +0300 |
commit | 36235df02d1fe5860371853472e04b4221bea3cd (patch) | |
tree | 871b624576540e2bf6c45af557bbbd825ef1400d /indra/llui/llscrollcontainer.h | |
parent | 6bc2c5789cfedee024d6eb8d33972bfa713ce3fc (diff) |
MAINT-7576 Fixed scroll zone being too small and hardcoded
Diffstat (limited to 'indra/llui/llscrollcontainer.h')
-rw-r--r-- | indra/llui/llscrollcontainer.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/indra/llui/llscrollcontainer.h b/indra/llui/llscrollcontainer.h index a2f7d14f1a..e6c7891397 100644 --- a/indra/llui/llscrollcontainer.h +++ b/indra/llui/llscrollcontainer.h @@ -66,6 +66,7 @@ public: hide_scrollbar; Optional<F32> min_auto_scroll_rate, max_auto_scroll_rate; + Optional<U32> max_auto_scroll_zone; Optional<LLUIColor> bg_color; Optional<LLScrollbar::callback_t> scroll_callback; Optional<S32> size; @@ -143,6 +144,7 @@ private: F32 mAutoScrollRate; F32 mMinAutoScrollRate; F32 mMaxAutoScrollRate; + U32 mMaxAutoScrollZone; bool mHideScrollbar; }; |