diff options
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      {  | 
