remove clock scale option (it has never been good)

This commit is contained in:
end-4
2025-11-05 00:41:28 +01:00
parent ba6fba447a
commit 1f208125bf
2 changed files with 0 additions and 14 deletions
@@ -152,7 +152,6 @@ Singleton {
property real x: 100
property real y: 100
property string style: "cookie" // Options: "cookie", "digital"
property real scale: 1
property JsonObject cookie: JsonObject {
property bool aiStyling: false
property int sides: 14
@@ -19,19 +19,6 @@ ContentPage {
Config.options.background.widgets.clock.enable = checked;
}
}
ConfigSpinBox {
icon: "loupe"
text: Translation.tr("Scale (%)")
value: Config.options.background.widgets.clock.scale * 100
from: 1
to: 200
stepSize: 2
onValueChanged: {
Config.options.background.widgets.clock.scale = value / 100;
}
}
ContentSubsection {
title: Translation.tr("Clock placement strategy")