diff options
author | Michele Calgaro <michele.calgaro@yahoo.it> | 2016-11-13 22:30:56 +0900 |
---|---|---|
committer | Michele Calgaro <michele.calgaro@yahoo.it> | 2016-11-13 22:30:56 +0900 |
commit | f32bc5176289b70bf1c6e7d2825d53f190bc4096 (patch) | |
tree | d9e692f5f8122ec8c8b3e02814fe069c2d7ff40b /tdeui | |
parent | 1ae867ab67d4b696d8280159614e0542cc18a8d2 (diff) | |
download | tdelibs-f32bc5176289b70bf1c6e7d2825d53f190bc4096.tar.gz tdelibs-f32bc5176289b70bf1c6e7d2825d53f190bc4096.zip |
tdeui: fixed handling of setPrecision() for KDoubleSpinBox. This resolves bug 2717.
Signed-off-by: Michele Calgaro <michele.calgaro@yahoo.it>
Diffstat (limited to 'tdeui')
-rw-r--r-- | tdeui/knuminput.cpp | 17 |
1 files changed, 16 insertions, 1 deletions
diff --git a/tdeui/knuminput.cpp b/tdeui/knuminput.cpp index f39d07443..7d1fa260f 100644 --- a/tdeui/knuminput.cpp +++ b/tdeui/knuminput.cpp @@ -1054,13 +1054,28 @@ void KDoubleSpinBox::setPrecision( int precision ) { } void KDoubleSpinBox::setPrecision( int precision, bool force ) { - if ( precision < 1 ) return; + if ( precision < 0 ) return; if ( !force ) { int maxPrec = maxPrecision(); if ( precision > maxPrec ) + { precision = maxPrec; + } } + // Update minValue, maxValue, value and lineStep to match the precision change + int oldPrecision = d->mPrecision; + double oldValue = value(); + double oldMinValue = minValue(); + double oldMaxValue = maxValue(); + double oldLineStep = lineStep(); d->mPrecision = precision; + if (precision != oldPrecision) + { + setMinValue(oldMinValue); + setMaxValue(oldMaxValue); + setValue(oldValue); + setLineStep(oldLineStep); + } updateValidator(); } |