date indicator: use expressive font for bubble date

This commit is contained in:
end-4
2025-10-06 10:26:07 +02:00
parent a5b80c1c73
commit 27c36530cb
@@ -20,10 +20,12 @@ Item {
if (!Config.options.time.secondPrecision) return 0; if (!Config.options.time.secondPrecision) return 0;
return secondHand.rotation + 45 // +45 degrees to align with minute hand return secondHand.rotation + 45 // +45 degrees to align with minute hand
} }
opacity: root.style === "rotating" ? 1.0 : 0 opacity: root.style === "rotating" ? 1.0 : 0
Behavior on opacity { Behavior on opacity {
animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this) animation: Appearance.animation.elementMoveFast.numberAnimation.createObject(this)
} }
onPaint: { onPaint: {
var ctx = getContext("2d"); var ctx = getContext("2d");
ctx.clearRect(0, 0, width, height); ctx.clearRect(0, 0, width, height);
@@ -53,7 +55,7 @@ Item {
} }
} }
// Date(only today's number) in right side of the clock // Date (only today's number) in right side of the clock
Rectangle { Rectangle {
z: 1 z: 1
implicitWidth: 45 implicitWidth: 45
@@ -108,7 +110,7 @@ Item {
color: Appearance.colors.colOnPrimaryContainer color: Appearance.colors.colOnPrimaryContainer
opacity: root.style === "bubble" ? 1.0 : 0 opacity: root.style === "bubble" ? 1.0 : 0
font { font {
family: Appearance.font.family.reading family: Appearance.font.family.expressive
pixelSize: 30 pixelSize: 30
weight: 1000 weight: 1000
} }
@@ -142,7 +144,7 @@ Item {
color: Appearance.colors.colOnPrimaryContainer color: Appearance.colors.colOnPrimaryContainer
opacity: root.style === "bubble" ? 1.0 : 0 opacity: root.style === "bubble" ? 1.0 : 0
font { font {
family: Appearance.font.family.reading family: Appearance.font.family.expressive
pixelSize: 30 pixelSize: 30
weight: 1000 weight: 1000
} }