diff options
author | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-02-25 18:59:43 +0200 |
---|---|---|
committer | Andrey Kleshchev <andreykproductengine@lindenlab.com> | 2020-02-25 20:13:05 +0200 |
commit | db2c32285b95d3517ebcd1dbf84faa2872ab6428 (patch) | |
tree | 7d09897627402abd6c6ebe694941eaf8f81e598f /indra/llui/llmultislider.h | |
parent | d16a79fc4c5d5af016db6c97efc3a7b2d08f62ce (diff) |
SL-12591 Fixed slider value comparison
Diffstat (limited to 'indra/llui/llmultislider.h')
-rw-r--r-- | indra/llui/llmultislider.h | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/indra/llui/llmultislider.h b/indra/llui/llmultislider.h index 20c3437ec4..99a78d6e09 100644 --- a/indra/llui/llmultislider.h +++ b/indra/llui/llmultislider.h @@ -77,6 +77,10 @@ protected: friend class LLUICtrlFactory; public: virtual ~LLMultiSlider(); + + // Multi-slider rounds values to nearest increments (bias towards rounding down) + F32 getNearestIncrement(F32 value) const; + void setSliderValue(const std::string& name, F32 value, BOOL from_event = FALSE); F32 getSliderValue(const std::string& name) const; F32 getSliderValueFromPos(S32 xpos, S32 ypos) const; |