diff options
author | maxim_productengine <mnikolenko@productengine.com> | 2018-11-29 17:55:23 +0200 |
---|---|---|
committer | maxim_productengine <mnikolenko@productengine.com> | 2018-11-29 17:55:23 +0200 |
commit | 58ffb2e4b11d7aaf1fb66531f4925bd359f551cb (patch) | |
tree | 24860ddcc79befa0126239808878c592d2d12fa3 /indra/llui | |
parent | ace17533c9a847678e8eda50135403e51a132c86 (diff) |
SL-10141 FIXED [EEP] Neighboring sky levels may be closer than 100 meters to each other in edit mode
Diffstat (limited to 'indra/llui')
-rw-r--r-- | indra/llui/llmultislider.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/indra/llui/llmultislider.cpp b/indra/llui/llmultislider.cpp index ece6edd285..9a7b6f9f6b 100644 --- a/indra/llui/llmultislider.cpp +++ b/indra/llui/llmultislider.cpp @@ -113,9 +113,9 @@ LLMultiSlider::LLMultiSlider(const LLMultiSlider::Params& p) setMouseUpCallback(initCommitCallback(p.mouse_up_callback)); } - if (p.overlap_threshold.isProvided()) + if (p.overlap_threshold.isProvided() && p.overlap_threshold > mIncrement) { - mOverlapThreshold = p.overlap_threshold; + mOverlapThreshold = p.overlap_threshold - mIncrement; } else { |