change settings layout a little

This commit is contained in:
darksignal7
2025-10-04 14:58:32 +03:00
parent 67dd730666
commit 0f29869a76
@@ -31,7 +31,6 @@ ContentPage {
} }
} }
ConfigRow{
ConfigSpinBox { ConfigSpinBox {
icon: "loupe" icon: "loupe"
text: Translation.tr("Scale (%)") text: Translation.tr("Scale (%)")
@@ -44,18 +43,8 @@ ContentPage {
} }
} }
ConfigSpinBox {
icon: "support"
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 { ContentSubsection {
@@ -80,8 +69,18 @@ ContentPage {
} }
} }
ContentSubsection { ConfigSpinBox {
title: Translation.tr("Cookie clock options") enabled: Config.options.background.clock.style === "cookie"
icon: "support"
text: Translation.tr("Clock sides")
value: Config.options.background.clock.clockSides
from: 1
to: 36
stepSize: 1
onValueChanged: {
Config.options.background.clock.clockSides = value;
}
}
ConfigRow{ ConfigRow{
enabled: Config.options.background.clock.style === "cookie" enabled: Config.options.background.clock.style === "cookie"
ConfigSwitch { ConfigSwitch {
@@ -109,7 +108,7 @@ ContentPage {
} }
} }
} }
}
ContentSubsection { ContentSubsection {
title: Translation.tr("Quote settings") title: Translation.tr("Quote settings")