diff --git a/kcms/fonts/package/contents/ui/main.qml b/kcms/fonts/package/contents/ui/main.qml --- a/kcms/fonts/package/contents/ui/main.qml +++ b/kcms/fonts/package/contents/ui/main.qml @@ -292,15 +292,12 @@ QtControls.SpinBox { id: dpiSpinBox - stepSize: 24 editable: true enabled: dpiCheckBox.checked value: kcm.fontsAASettings.dpi !== 0 ? kcm.fontsAASettings.dpi : 96 onValueModified: kcm.fontsAASettings.dpi = value - // to: need to divide to stepSize - to: 1008 - // lowest vaue here can be == stepSize, that is because 0 means off - from: 24 + to: 999 + from: 1 } }