diff options
author | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
---|---|---|
committer | Jacek Antonelli | 2008-08-15 23:44:50 -0500 |
commit | 89fe5dab825a62a0e3fd8d248cbc91c65eb2a426 (patch) | |
tree | bcff14b7888d04a2fec799c59369f6095224bd08 /linden/indra/llui/llsliderctrl.cpp | |
parent | Second Life viewer sources 1.13.3.2 (diff) | |
download | meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.zip meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.gz meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.bz2 meta-impy-89fe5dab825a62a0e3fd8d248cbc91c65eb2a426.tar.xz |
Second Life viewer sources 1.14.0.0
Diffstat (limited to 'linden/indra/llui/llsliderctrl.cpp')
-rw-r--r-- | linden/indra/llui/llsliderctrl.cpp | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/linden/indra/llui/llsliderctrl.cpp b/linden/indra/llui/llsliderctrl.cpp index ca8f3ad..c62ec9a 100644 --- a/linden/indra/llui/llsliderctrl.cpp +++ b/linden/indra/llui/llsliderctrl.cpp | |||
@@ -215,7 +215,7 @@ void LLSliderCtrl::updateText() | |||
215 | LLLocale locale(LLLocale::USER_LOCALE); | 215 | LLLocale locale(LLLocale::USER_LOCALE); |
216 | 216 | ||
217 | // Don't display very small negative values as -0.000 | 217 | // Don't display very small negative values as -0.000 |
218 | F32 displayed_value = (F32)(floor(getValueF32() * pow(10, mPrecision) + 0.5) / pow(10, mPrecision)); | 218 | F32 displayed_value = (F32)(floor(getValueF32() * pow(10.0, (F64)mPrecision) + 0.5) / pow(10.0, (F64)mPrecision)); |
219 | 219 | ||
220 | LLString format = llformat("%%.%df", mPrecision); | 220 | LLString format = llformat("%%.%df", mPrecision); |
221 | LLString text = llformat(format.c_str(), displayed_value); | 221 | LLString text = llformat(format.c_str(), displayed_value); |