diff options
| author | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-03 22:19:08 +1000 |
|---|---|---|
| committer | 2 * r + 2 * t <61896496+soramanew@users.noreply.github.com> | 2025-09-03 22:19:08 +1000 |
| commit | 02c59fbd38bd70b8701f1c26bebbadc3337699b3 (patch) | |
| tree | 32a0912c8cfd69626999ab3cebb702ba2ac52d97 | |
| parent | nix/hm: move environment to systemd.environment + refactor (#551) (diff) | |
| download | caelestia-shell-02c59fbd38bd70b8701f1c26bebbadc3337699b3.tar.gz caelestia-shell-02c59fbd38bd70b8701f1c26bebbadc3337699b3.tar.bz2 caelestia-shell-02c59fbd38bd70b8701f1c26bebbadc3337699b3.zip | |
dashboard/calendar: fix
| -rw-r--r-- | modules/dashboard/dash/Calendar.qml | 12 |
1 files changed, 7 insertions, 5 deletions
diff --git a/modules/dashboard/dash/Calendar.qml b/modules/dashboard/dash/Calendar.qml index ff27669..f8cf04a 100644 --- a/modules/dashboard/dash/Calendar.qml +++ b/modules/dashboard/dash/Calendar.qml @@ -144,8 +144,7 @@ Column { month: root.currMonth year: root.currYear - anchors.left: parent.left - anchors.right: parent.right + anchors.fill: parent spacing: 3 locale: Qt.locale() @@ -179,7 +178,7 @@ Column { } } - StyledClippingRect { + StyledRect { id: todayIndicator readonly property Item todayItem: grid.contentItem.children.find(c => c.model.today) ?? null @@ -196,6 +195,7 @@ Column { implicitWidth: today?.implicitWidth ?? 0 implicitHeight: today?.implicitHeight ?? 0 + clip: true radius: Appearance.rounding.full color: Colours.palette.m3primary @@ -224,13 +224,15 @@ Column { Behavior on x { Anim { - easing.bezierCurve: Appearance.anim.curves.emphasized + duration: Appearance.anim.durations.expressiveDefaultSpatial + easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } } Behavior on y { Anim { - easing.bezierCurve: Appearance.anim.curves.emphasized + duration: Appearance.anim.durations.expressiveDefaultSpatial + easing.bezierCurve: Appearance.anim.curves.expressiveDefaultSpatial } } } |