added simpler cookie clock style

This commit is contained in:
darksignal7
2025-10-03 19:19:21 +03:00
parent 71f7d45084
commit a8e1f3ef4c
4 changed files with 31 additions and 6 deletions
@@ -20,6 +20,7 @@ ContentPage {
}
}
ConfigSpinBox {
text: Translation.tr("Scale (%)")
value: Config.options.background.clock.scale * 100
@@ -31,6 +32,17 @@ ContentPage {
}
}
ConfigSpinBox {
text: Translation.tr("Clock sides")
value: Config.options.background.clock.clockSides
from: 1
to: 36
stepSize: 1
onValueChanged: {
Config.options.background.clock.clockSides = value;
}
}
ContentSubsection {
title: Translation.tr("Clock style")
ConfigSelectionArray {
@@ -49,6 +61,11 @@ ContentPage {
icon: "cookie",
value: "cookie"
},
{
displayName: Translation.tr("Material simpler cookie"),
icon: "cookie",
value: "simpler-cookie"
},
]
}
}