summaryrefslogtreecommitdiffstats
path: root/tdeui/knuminput.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'tdeui/knuminput.cpp')
-rw-r--r--tdeui/knuminput.cpp17
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();
}